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

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

          //--- 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"