Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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

Signature
C#
C#
 public System.String Title{ get; set; }
Signature
vb.net
vb.net
Public Property Title() As String
Remarks

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

Example
Code Block
csharp
csharp
titleC#

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

          //--- Set Title
          docProps.Title = "Sample Word Document";
        
Code Block
vb.net
vb.net
titlevb.net

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

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