📚 SAP Business One SDK Help

GetAsXML Method
See Also  Example
xmlQuery
XML format string that holds information such as the rows, cells, or properties that you want to retrieve.

Description

Reterns the XML format string that holds cell configuration data.

Syntax

Visual Basic
Public Function GetAsXML( _
   ByVal xmlQuery As String _
) As String

Parameters

xmlQuery
XML format string that holds information such as the rows, cells, or properties that you want to retrieve.

Example

Sample querying XML (C#)Copy Code
<CommonSetting> 
  <Rows> 
    <Row rowNum="1"> 
      <Cells> 
        <Cell colNum="3"/> 
        <Cell colNum="4"/> 
      </Cells> 
    </Row> 
    <Row rowNum="3"> 
      <Cells> 
        <Cell colNum="5"/> 
        <Cell colNum="6"/> 
      </Cells> 
    </Row> 
  </Rows> 
</CommonSetting> 

See Also