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

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

The built-in property.

The value of the built-in property.


          //--- Get Property
          Object application = docProps["Application"];

          //--- Set Property
          docProps["Application"] = "xlw";
        

          '--- Get Property
          Dim application As Object = docProps("Application")

          '--- Set Property
          docProps("Application") = "xlw"