📚 SAP Business One SDK Help

UpdateFromXML Method
See Also  Example
xml
XML format string that holds cell configuration data.

Description

Updates a cell from an XML format string.

Syntax

Visual Basic
Public Sub UpdateFromXML( _
   ByVal xml As String _
) 

Parameters

xml
XML format string that holds cell configuration data.

Example

Sample XML data (C#)Copy Code
<CommonSetting> 
  <Rows> 
    <Row rowNum="1" backColor ="100" editable="false"> 
      <Cells> 
        <Cell colNum="3" backColor ="9000" editable="true" fontStyle=""/> 
        <Cell colNum="4" editable="true" fontColor="5000" fontSize="20" fontStyle="1"/> 
      </Cells> 
    </Row> 
    <Row rowNum="3" backColor ="6000" fontColor="1000" fontSize="10" fontStyle="10"> 
      <Cells> 
        <Cell colNum="5" backColor ="88888" editable="false" fontColor="4000" fontSize="18" fontStyle="2"/> 
        <Cell colNum="6" backColor ="20000" editable="false" fontColor="6000" fontStyle="10"/> 
      </Cells> 
    </Row> 
  </Rows> 
</CommonSetting> 

See Also