DashboardSlideResetFilterSelection

Syntax

bool DashboardSlideResetFilterSelection(string mon)

Parameters

mon. Moniker for working with information panel slide.

Description

The DashboardSlideResetFilterSelection operation removes the selection, according to which visualizers on the current slide and other slides are synchronized.

Comments

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.

Example

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.

SOAP request:

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DashboardSlideResetFilterSelection xmlns="http://www.fsight.ru/PP.SOM.Som">
  <mon xmlns="">LMGDDNGEFDIFGOAEIGCANAEEEOBLIOHEBICOKPMHEJEIFPOB!M!S!PGLCIBOGEFDIFGOAEHHDBAHHNAGHEIMPENKHHCMJLGBPHJAEM!Slides!1</mon>
  </DashboardSlideResetFilterSelection>
  </s:Body>
  </s:Envelope>

SOAP response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
  <DashboardSlideResetFilterSelectionResult xmlns="http://www.fsight.ru/PP.SOM.Som" xmlns:q1="http://www.fsight.ru/PP.SOM.Som" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">1</DashboardSlideResetFilterSelectionResult>
  </soapenv:Body>
  </soapenv:Envelope>

JSON request:

{
"DashboardSlideResetFilterSelection" :
{
"mon" : "LMGDDNGEFDIFGOAEIGCANAEEEOBLIOHEBICOKPMHEJEIFPOB!M!S!PGLCIBOGEFDIFGOAEHHDBAHHNAGHEIMPENKHHCMJLGBPHJAEM!Slides!1"
}
}

JSON response:

{
"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:

Working with Information Panels