Sets or returns a String that is the title of this file.

 public System.String Title{ get; set; }
Public Property Title() As String

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


          //--- Return Title
          string title = docProps.Title;

          //--- Set Title
          docProps.Title = "Sample Word Document";
        

          '--- Return Author
          Dim title As String = docProps.Title

          '--- Set Author
          docProps.Title = "Sample Word Document"