Sets or returns the value of the Title field in a workbook's Properties sheet. The title property can be used to search for an Excel file.

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

          //--- Get Title
          string title = docProps.Title;

          //--- Set Title
          docProps.Title = "Employees";
        
          '--- Get Title
          Dim title As String = docProps.Title

          '--- Set Title
          docProps.Title = "Employees"