Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

{signature}
{example}{code:csharp|title=C#}

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

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

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

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the author of the spreadsheet. The author proporty can be used to search for an Excel file.  {excerpt}
{signature:C#}
 public System.String Author{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Author() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle