Sets or returns a String that is the name of the author that created this file.

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

MS Word equivalent: File menu > Properties > Summary tab > Author:


          //--- Return Author
          string author = docProps.Author;

          //--- Set Author
          docProps.Author = "John Doe";
        

          '--- Return Author
          Dim author As String = docProps.Author

          '--- Set Author
          docProps.Author = "John Doe"