'Declaration
Public Event ItemClick As NavItemClickEventHandler
public event NavItemClickEventHandler ItemClick
Event Data
The event handler receives an argument of type NavItemClickEventArgs containing data related to this event. The following NavItemClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | (Inherited from System.Windows.Forms.MouseEventArgs) |
Cancel | Gets or sets a value indicating whether the event should be canceled. |
Clicks | (Inherited from System.Windows.Forms.MouseEventArgs) |
Delta | (Inherited from System.Windows.Forms.MouseEventArgs) |
Item | Gets clicked navigation item. (Inherited from C1.Win.Input.DbNavigator.Events.NavItemClickedEventArgs) |
Location | (Inherited from System.Windows.Forms.MouseEventArgs) |
X | (Inherited from System.Windows.Forms.MouseEventArgs) |
Y | (Inherited from System.Windows.Forms.MouseEventArgs) |
See Also