bool ResetPrxStyleSheet(string mon)
mon. Moniker of opened regular report instance.
The ResetPrxStyleSheet operation disables the repository styles table used in regular report.
To execute the operation, in the mon field specify moniker of opened regular report instance, in which a styles table is connected.
The operation results in the logical True if the styles table was disconnected successfully.
Below is the example of disconnecting the styles table used in regular report. The request contains moniker of opened regular report instance. The response contains whether the styles table was disconnected successfully.
{
"ResetPrxStyleSheet" :
{
"mon" : "BHGFKLHCBNDPFOAEABNELEOBLJJGGNLEBKOPJFEJDMKMADKA!M!S!PDBPIEBICBNDPFOAELDHONAGEJFGJIEMEGINMKELIDHFLHMIB"
}
}
{
"ResetPrxStyleSheetResult" : "1"
}
public static bool ResetPrxStyleSheet(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tDel = new ResetPrxStyleSheet()
{
mon = moniker
};
// Disconnect styles table
var result = somClient.ResetPrxStyleSheet(tDel);
return result;
}
See also: