XY Chart NET 3 Control Reference
CustomToolbarItemSelected Event
This event is generated whenever the user selects a custom toolbar button (see Custom Toolbar). Use this event to perform operations specific to whenever a custom toolbar button is selected.   The ItemIndex parameter indicates the custom toolbar's button index.
Syntax
[Visual Basic]
Event CustomToolbarItemSelected(ItemIndex As Integer)
[C#]
CustomToolbarItemSelected(int ItemIndex)
[C++]
CustomToolbarItemSelected(System::Int32 ItemIndex)
       
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

Private Sub XYChartNETCtl1_CustomToolbarItemSelected(ByVal ItemIndex As Integer) Handles XyChartNETCtl1.CustomToolbarItemSelected  
   MsgBox("Custom Toolbar " & CStr(ItemIndex) & " selected")
End Sub
                       
                       
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.