Spread Windows Forms 12.0 Product Documentation
SheetIndex Property (PrintDocumentEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintDocumentEventArgs Class : SheetIndex Property
Get sheet's index is printing.
Syntax
'Declaration
 
Public ReadOnly Property SheetIndex As Integer
'Usage
 
Dim instance As PrintDocumentEventArgs
Dim value As Integer
 
value = instance.SheetIndex
public int SheetIndex {get;}
Example
This example lists the sheet index when printing.
private void button1_Click(object sender, EventArgs e)
        {
            fpSpread1.PrintSheet(-1);
        }

private void fpSpread1_PrintDocument(object sender, FarPoint.Win.Spread.PrintDocumentEventArgs e)
        {
            listBox1.Items.Add(e.SheetIndex.ToString());
        }
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    fpSpread1.PrintSheet(-1)
End Sub

Private Sub fpSpread1_PrintDocument(sender As Object, e As FarPoint.Win.Spread.PrintDocumentEventArgs) Handles fpSpread1.PrintDocument
    ListBox1.Items.Add(e.SheetIndex.ToString())
End Sub
See Also

Reference

PrintDocumentEventArgs Class
PrintDocumentEventArgs Members