bool ResetSkippedErrors(string mon)
mon. Moniker for working with report formulas settings.
The ResetSkippedErrors operation resets skipped errors in cells.
After executing the operation, the indication is returned for the cells containing errors in formulas but skipped by the user. To execute the operation, in the mon field specify regular report instance moniker with the !Options!ErrorChecking postfix.
The operation results in the logical True if skipped errors were reset successfully.
Below is the example of resetting skipped errors in regular report cells. The request contains moniker for working with regular report formulas settings. The response contains whether skipped errors were reset successfully.
{
"ResetSkippedErrors" :
{
"mon" : "LFHLAJJGFJJNFOAEOHLLHDAIEIAGJHHELLMOKBONCJGBCELE!M!S!PNLMGHCKGFJJNFOAEPDODPHGHNCFOELOELJIHLDOGENABJMFK!Options!ErrorChecking"
}
}
{
"ResetSkippedErrorsResult" : "1"
}
public static bool ResetSkippedErrors(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tReset = new ResetSkippedErrors()
{
mon = moniker + "!Options!ErrorChecking"
};
// Reset skipped errors in cells
var result = somClient.ResetSkippedErrors(tReset);
return result;
}
See also: