Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
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:vb.net}
Public ReadOnly Property DocumentProperties() As DocumentProperties
{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}