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
Wiki Markup
{description}
{excerpt}Returns an {{int}} representing the number of pages this document had when it was last opened in Word.{excerpt}
{signature:C#}
 public int NumPagesOnLastOpen{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property NumPagesOnLastOpen() As Integer
{signature}
{remarks}MS Word equivalent: File menu > Properties > Statistics tab > Statistics listbox > Pages:

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

          int numPages = oDocument.NumPagesOnLastOpen;
        {code}
{code:vb.net|title=vb.net}

          Dim numPages As Integer = oDocument.NumPagesOnLastOpen
        {code}

{example}