Page tree

Versions Compared

Key

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

Excerpt

Returns a DocumentProperties object that represents properties of the specified workbook, such as name, author, and summary. In Microsoft Excel, these properties are displayed in the file's Properties sheet. To view the Properties sheet in Excel, open Excel's File menu, and select Properties.

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

          DocumentProperties docProps =
               wb.DocumentProperties;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim docProps As DocumentProperties = _
               wb.DocumentProperties
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [DocumentProperties|DocumentProperties] object that represents properties of the specified workbook, such as name, author, and summary. In Microsoft Excel, these properties are displayed in the file's Properties sheet. To view the Properties sheet in Excel, open Excel's File menu, and select Properties.{excerpt}
{signature:C#}
 public DocumentProperties DocumentProperties{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property DocumentProperties() As DocumentProperties
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle