{description}
{excerpt}Sets or returns the author of the presentation. The author property can be used to search for a PowerPoint file.  {excerpt}
{signature:C#}
 public System.String Author{ get; set; }
{signature}{signature:vb.net}
Public Property Author() As String
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set Author
          docProps.Author = "J. Smith";
        {code}
{code:vbnet|title=vb.net}

          '--- Get Application
          Dim author As String = docProps.Author

          '--- Set Author
          docProps.Author = "J. Smith"
        {code}

{example}