Sets or returns the author of the presentation. The author property can be used to search for a PowerPoint 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"