Returns an Object that represents the value of the property specified.

 public System.Object GetProperty(BuiltInProperty property)
Public Function GetProperty(ByVal [property] As BuiltInProperty) As Object

A BuiltInProperty object that represents the built-in property to set.

An Object that represents the value of the property specified.

MS Word equivalent: File menu > Properties > Custom tab > Properties:


          //--- Return "Author" Property
          string priority =
               (string)docProps.GetProperty(DocumentProperties.BuiltInProperty.Author);
        

          '--- Return "Author" Property
          Dim priority As String = _
               docProps.GetProperty(DocumentProperties.BuiltInProperty.Author)