Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

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.
C#
public int FirstPageNumber{ get; set; }
vb.net
Public Property FirstPageNumber() As Integer

Examples

C#
//--- Get FirstPageNumber
int firstPage = ps.FirstPageNumber;
 
//--- Set FirstPageNumber
ps.FirstPageNumber = 3;
vb.net
'--- Get FirstPageNumber
Dim firstPage As Integer = ps.FirstPageNumber
 
'--- Set FirstPageNumber
ps.FirstPageNumber = 3
  • No labels