Sets or returns the value of the Company field in a workbook's Properties sheet. Windows can search for an Excel file using this value.

<p> public System.String Company{ get; set; }</p>
<p>Public Property Company() As String</p>

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

          //--- Set Company
          docProps.Company = "SoftArtisans";
        
          '--- Get Company
          Dim company As String = docProps.Company

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