Returns the value of a specified built-in property. The value can be one of the following types, depending on the property: String, Double, Integer, Boolean or DateTime.

 public System.Object this[BuiltIn property] { get; set; }
Public Default Property Item(ByVal [property] As BuiltIn) As Object

The built-in property.

The value of the built-in property.


          //--- Get Property
          Object title = docProps[DocumentProperties.BuiltIn.Title];

          //--- Set Property
          docProps[DocumentProperties.BuiltIn.Title] = "xlw";
        

          '--- Get Property
          Dim title As Object = docProps(DocumentProperties.BuiltIn.Title)

          '--- Set Property
          docProps(DocumentProperties.BuiltIn.Title) = "xlw"