Sets or returns a String that represents any company info added to this file.

 public System.String Company{ get; set; }
Public Property Company() As String

MS Word equivalent: File menu > Properties > Summary tab > Company:


          //--- Return Company
          string company = docProps.Company;

          //--- Set Company
          docProps.Company = "SoftArtisans, Inc.";
        

          '--- Return Company
          Dim company As String = docProps.Company

          '--- Set Company
          docProps.Company = "SoftArtisans, Inc."