wwxml::cSchemaName
Name of the a schema that gets generated when an embedded schema is created.
Note when generating an internal schema the cSchemaUrl property is always overriden with "#" + cSchemaname.
o.cSchemaName
Example
oXML = CREATEOBJECT('wwXML')
- ** Cursor Example with embedded Schema/custom name SELECT * FROM TT_CUST INTO CURSOR TQuery
oXML.nCreateDataStructure = 1 oXML.cSchemaName = "Test" lcXML = oXML.CursorToXML("customers","customer") ShowXML(lcXML)