Sets or returns a String that represents the name of the manager in charge of this file.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public System.String Manager{ get; set; }
</pre></td></tr></table>
<p>Public Property Manager() As String</p>

MS Word equivalent: File menu > Properties > Summary tab > Manager:


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

          //--- Set Manager
          docProps.Manager = "John Doe";
        

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

          '--- Set Manager
          docProps.Manager = "John Doe"