Sets or returns the author of the spreadsheet. The author proporty can be used to search for an Excel file.

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

          //--- Get Application
          string author = docProps.Author;

          //--- Set Author
          docProps.Author = "J. Smith";
        
          '--- Get Application
          Dim author As String = docProps.Author

          '--- Set Author
          docProps.Author = "J. Smith"