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 value of the Manager field in the presentation's Properties sheet. The manager property can be used to search for a PowerPoint file.

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

          //--- Get Manager
          string manager = docProps.Manager;

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

          '--- Get Manager
          Dim manager As String = docProps.Manager

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

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the value of the Manager field in the presentation's Properties sheet. The manager property can be used to search for a PowerPoint file.{excerpt}
{signature:C#}
 public System.String Manager{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Manager() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle