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 the first page number for the printed worksheet. By default, the first page number will be 1, or, if the print job does not start with page 1, this will be the number of the first page in the sequence of pages to print. Setting this property will set the FirstPageNumberAuto property to false.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public int FirstPageNumber{ get; set; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
<p>Public Property FirstPageNumber() As Integer</p>

Example

Code Block
csharp
csharp
titleC#

          //--- Get FirstPageNumber
          int firstPage = ps.FirstPageNumber;

          //--- Set FirstPageNumber
          ps.FirstPageNumber = 3;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Get FirstPageNumber
          Dim firstPage As Integer = ps.FirstPageNumber

          '--- Set FirstPageNumber
          ps.FirstPageNumber = 3
        
Example