Load Mark Up

This API adds a new row to a structure browser. Applications must pass the object ID of the row to which the new row will be connected.

Within an XML <mxRoot> element, the markup value indicates the action to take, and can be any of these values:


  • add. Adds a row for the object.
  • cut. Removes the row for the object from the structure browser.
  • . Updates column values.
  • . Resequences rows.

This example adds the specified object as a child to the first object:

<mxRoot>
    <object objectId="19940.22650.58300.63486">
       <object objectId="19940.22650.28544.49549" relId="" 

       relType="relationship_EBOM" markup="add">   </object>
    </object>
</mxRoot>

This example removes the specified object:

<mxRoot>
    <object objectId="19940.22650.58300.63486" rowid="0">
       <object objectId="19940.22650.28544.49549" 
       relId="19940.22650.44544.64603"
       parentId="19940.22650.58300.63486"
       relType="relationship_EBOM" markup="cut"/>
    </object>
</mxRoot>