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 presentation, such as name, author, and summary. In Microsoft PowerPoint, these properties are displayed in the file's Properties sheet. To view the Properties sheet in PowerPoint, open PowerPoint's File menu, and select Properties.

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

          DocumentProperties docProps =
               wb.DocumentProperties;
        
{code}
{code:vbnet|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 presentation, such as name, author, and summary. In Microsoft PowerPoint, these properties are displayed in the file's Properties sheet. To view the Properties sheet in PowerPoint, open PowerPoint'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
vbnetvbnettitle