Property: Name for DocumentProperty <DataPlugin>
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: Name for DocumentProperty <DataPlugin>
Property: Name for DocumentProperty <DataPlugin>
Returns the name of a meta property of a document. A document might be an Office file in XML format or a PDF, JPEG, PNG, or TIFF file.
Object.Name
| Object | DocumentProperty <DataPlugin> Object with this property |
| Object.Name | String with read access |
The following example transfers the names and values of a document's meta properties into the data set properties:
Dim oMyProperty For each oMyProperty in Document.Properties Call Root.Properties.Add(oMyProperty.Name, oMyProperty.Value) Next