Occurs when the user changes the active sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Event ActiveSheetChanged As EventHandler |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As FpSpread
Dim handler As EventHandler
AddHandler instance.ActiveSheetChanged, handler |
Example
This example illustrates the use of the event.
C# | Copy Code |
---|
FpSpread1.Sheets.Count = 3;
private void FpSpread1ActiveSheetChanged(object sender, System.EventArgs e)
{
TextBox1.Text = FpSpread1.ActiveSheetViewIndex.ToString();
}
|
Visual Basic | Copy Code |
---|
FpSpread1.Sheets.Count = 3
Private Sub FpSpread1ActiveSheetChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles FpSpread1.ActiveSheetChanged
TextBox1.Text = FpSpread1.ActiveSheetViewIndex.ToString()
End Sub |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also