bool DashboardSlideResetFilterSelection(string mon)
mon. Moniker for working with information panel slide.
The DashboardSlideResetFilterSelection operation removes the selection, according to which visualizers on the current slide and other slides are synchronized.
After executing the operation the filter selection is removed for visualizers with enabled synchronization. To execute the operation, in the mon field specify moniker of opened information panel instance with the !Slides!slide key postfix.
The operation results in the logical true if filter selection was successfully removed for visualizers.
Below is the example of removing filter selection for information panel slide visualizers. The request contains slide moniker. The response contains whether selection was removed successfully.
{
"DashboardSlideResetFilterSelection" :
{
"mon" : "LMGDDNGEFDIFGOAEIGCANAEEEOBLIOHEBICOKPMHEJEIFPOB!M!S!PGLCIBOGEFDIFGOAEHHDBAHHNAGHEIMPENKHHCMJLGBPHJAEM!Slides!1"
}
}
{
"DashboardSlideResetFilterSelectionResult" : "1"
}
public static bool DashboardSlideResetFilterSelection(string moniker, uint slideKey)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tReset = new DashboardSlideResetFilterSelection()
{
// Moniker for working with visualizer
mon = moniker + "!Slides!" + slideKey
};
// Remove selection for slide visualizer
var result = somClient.DashboardSlideResetFilterSelection(tReset);
return result;
}
See also: