Spread Windows Forms 12.0 Product Documentation
SheetTabIndex Property (SheetTabClickEventArgs)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetTabClickEventArgs Class : SheetTabIndex Property
Gets the index of the sheet tab that is clicked.
Syntax
'Declaration
 
Public ReadOnly Property SheetTabIndex As Integer
'Usage
 
Dim instance As SheetTabClickEventArgs
Dim value As Integer
 
value = instance.SheetTabIndex
public int SheetTabIndex {get;}

Property Value

Integer index of the sheet tab
Example
private void fpSpread1_SheetTabClick(object sender, FarPoint.Win.Spread.SheetTabClickEventArgs e)
{
    fpSpread1.TabStrip[e.SheetTabIndex].BackColor = Color.Teal;
}
Private Sub FpSpread1_SheetTabClick(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SheetTabClickEventArgs) Handles
FpSpread1.SheetTabClick
    FpSpread1.TabStrip(e.SheetTabIndex).BackColor = Color.Teal
End Sub
See Also

Reference

SheetTabClickEventArgs Class
SheetTabClickEventArgs Members