DIAdem Help

Property: Custom for DocumentProperty <DataPlugin>

  • Updated2024-09-12
  • 1 minute(s) read

Property: Custom for DocumentProperty <DataPlugin>

Specifies whether a meta property of a document is a custom property. Custom properties are user-defined meta properties of a document. A document can be an Office file in XML format, a PDF, JPEG, PNG, or TIFF file.

Object.Custom
ObjectDocumentProperty <DataPlugin>
Object with this property
Object.CustomBoolean value with read access

The following example transfers the names and values of all custom properties of a document into the data set properties:

Dim oMyProp
For each oMyProp in Document.Properties
  If oMypPop.Custom Then
    Call Root.Properties.Add("Custom_"&oMyProp.Name, oMyProp.Value)
  End If
Next