'Declaration Public Event BeforeDoubleClick As C1.Win.FlexGrid.BeforeMouseDownEventHandler
public event C1.Win.FlexGrid.BeforeMouseDownEventHandler BeforeDoubleClick
Event Data
The event handler receives an argument of type C1.Win.FlexGrid.BeforeMouseDownEventArgs containing data related to this event. The following BeforeMouseDownEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | Gets which mouse button was pressed. |
Cancel | Gets or sets a value indicating whether the event should be canceled. |
Clicks | Gets the number of times the mouse button was pressed and released. |
Delta | Gets a signed count of the number of detents the mouse wheel has rotated. A detent is one notch of the mouse wheel. |
X | Gets the x-coordinate of a mouse click. |
Y | Gets the y-coordinate of a mouse click. |
See Also