CustomDocumentProperties Property
Applies To
Binder object.
Description
Returns a DocumentProperties collection that represents all the custom document properties for the specified binder. Read-only.
Remarks
Use the BuiltinDocumentProperties property to return the DocumentProperties collection that represents all the built-in document properties for the specified binder.
See Also
BuiltinDocumentProperties property.
Example
This example adds a custom document property to Binder1.obd and then saves the binder.
Set nb = GetObject("C:\Binder1.obd", "OfficeBinder.Binder")
nb.CustomDocumentProperties.Add Name:="complete", _
LinkToContent:=False, Type:=offPropertyTypeBoolean, Value:=False
nb.Save
Set nb = Nothing