Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
C#
C#
<p>publicpublic DocumentProperties DocumentProperties{ get; }</p>
Signature
vb.net
vb.net
<p>PublicPublic ReadOnly Property DocumentProperties() As DocumentProperties</p>DocumentProperties
Example
 
Code Block
csharp
csharp
titleC#
          DocumentProperties docProps =
               wb.DocumentProperties;
        
Code Block
vbnet
vbnet
titlevb.net
          Dim docProps As DocumentProperties = _
               wb.DocumentProperties
        
Example