BuiltinDocumentProperties Property

Applies To

Binder object.

Description

Returns a DocumentProperties collection that represents all the built-in document properties for the specified binder. Read-only.

Remarks

Use the CustomDocumentProperties property to return the DocumentProperties collection that represents all the custom document properties for the specified binder.

See Also

CustomDocumentProperties property.

Example

This example displays the name of the author of Binder1.obd.

Set nb = GetObject("C:\Binder1.obd", "OfficeBinder.Binder")
MsgBox nb.BuiltinDocumentProperties("Author").Value
Set nb = Nothing