Collection: DocumentNamespaces <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
(Collections | Document
Collection: DocumentNamespaces <DataPlugin>
Collection of name spaces in a document. Use namespaces to group XML elements in a document.
The following example transfers all meta properties of a document's namespaces into the data set properties:
Dim oMyNameSpace,oMyProperty For each oMyNameSpace in Document.Namespaces For each oMyProperty in oMyNameSpace.Properties Call Root.Properties.Add(oMyProperty.Name, oMyProperty.Value) Next Next