DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Properties for DocumentNamespace <DataPlugin>

Property: Properties for DocumentNamespace <DataPlugin>

Returns all meta properties in a specific namespace of a document. Use namespaces to identify XML elements clearly in a document.

Set oDocumentProperties = Object.Properties
ObjectDocumentNamespace <DataPlugin>
Object with this property
oDocumentPropertiesDocumentProperties <DataPlugin>
Returned object

The following example transfers all meta properties of a document's namespaces into the data set properties:

Dim oMyNamespace, oMyProp
For each oMyNamespace in Document.Namespaces
  For each oMyProp in oMyNamespace.Properties
    Call Root.Properties.Add(oMyProp.Name, oMyProp.Value)
  Next
Next
In This Section
Was this information helpful?