_Document.BuiltInDocumentProperties Property 

Returns a Microsoft.Office.Core.DocumentProperties collection that represents all the built-in document properties for the specified document.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim _Document1 As _Document

Dim returnValue As Object
returnValue = _Document1.BuiltInDocumentProperties

Syntax

ReadOnly Property BuiltInDocumentProperties() As Object
object BuiltInDocumentProperties {get;}
property Object^ BuiltInDocumentProperties{
    Object^ get();
}
public System.Object get_BuiltInDocumentProperties();
function get BuiltInDocumentProperties() : Object;

Remarks

To return a single Microsoft.Office.Core.DocumentProperty object that represents a specific built-in document property, use BuiltinDocumentProperties(index), where index is a WdBuiltInProperty constant.

If Microsoft Word doesn't define a value for one of the built-in document properties, reading the Value property for that document property generates an error.

Use the CustomDocumentProperties property to return the collection of custom document properties.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

_Document Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

_Document Members