GetTabSheetDisplayPaper

Syntax

TabSheetDisplayPaperResult GetTabSheetDisplayPaper(TabSheetId tTabSheet)

Parameters

tTabSheet. Moniker of the sheet, for which operation was executed.

Description

The GetTabSheetDisplayPaper operation gets page border display settings.

Comments

To execute the operation, in the tTabSheet field specify sheet moniker. The moniker can be based on the moniker of opened object instance, with which the work is executed.

The operation results in the page border display settings.

Example

Below is the example of getting page border display settings. The request contains moniker of the sheet that is divided into pages. The response contains setting value.

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">
<GetTabSheetDisplayPaper xmlns="http://www.fsight.ru/PP.SOM.Som">
<tTabSheet xmlns="">
  <id>JONPGPOBGHLNFOAEKLBMKJOPCDGDDHPEFJNDMKCLCALFLGLI!M!S!PNCJKHHPBGHLNFOAECCLLPOGCOBIIAJFEAIMHNHBJIBCIKHKO!Sheets!1</id>
  </tTabSheet>
  </GetTabSheetDisplayPaper>
  </s:Body>
  </s:Envelope>

SOAP response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<GetTabSheetDisplayPaperResult 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">
  <dp xmlns="">0</dp>
  </GetTabSheetDisplayPaperResult>
  </soapenv:Body>
  </soapenv:Envelope>

JSON request:

{
"GetTabSheetDisplayPaper" :
{
"tTabSheet" :
{
"id" : "JONPGPOBGHLNFOAEKLBMKJOPCDGDDHPEFJNDMKCLCALFLGLI!M!S!PNCJKHHPBGHLNFOAECCLLPOGCOBIIAJFEAIMHNHBJIBCIKHKO!Sheets!1"
}
}
}

JSON response:

{
"GetTabSheetDisplayPaperResult" :
{
"dp" : "0"
}
}
public static TabSheetDisplayPaperResult GetTabSheetDisplayPaper(string moniker, string sheetKey)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tGet = new GetTabSheetDisplayPaper()
{
tTabSheet = new TabSheetId() { id = moniker + "!Sheets!" + sheetKey }
};
// Get page border display settings
var result = somClient.GetTabSheetDisplayPaper(tGet);
return result;
}

See also:

Table: Operations