{description}
{excerpt}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.  {excerpt}
{signature:C#}
 public System.String Title{ get; set; }
{signature}{signature:vb.net}
Public Property Title() As String
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set Title
          docProps.Title = "Employees";
        {code}
{code:vb.net|title=vb.net}

          '--- Get Title
          Dim title As String = docProps.Title

          '--- Set Title
          docProps.Title = "Employees"
        {code}

{example}