'Declaration
Public Event BeforeRightClick As EventHandler(Of BeforeRightClickEventArgs)
'Usage
Dim instance As FpSpread Dim handler As EventHandler(Of BeforeRightClickEventArgs) AddHandler instance.BeforeRightClick, handler
public event EventHandler<BeforeRightClickEventArgs> BeforeRightClick
Event Data
The event handler receives an argument of type BeforeRightClickEventArgs containing data related to this event. The following BeforeRightClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | (Inherited from System.Windows.Forms.MouseEventArgs) |
Cancel | Gets or sets a boolean value indicates whether the default right-click action is performed when the procedure is finished. |
Clicks | (Inherited from System.Windows.Forms.MouseEventArgs) |
ContextMenuStrip | Gets or sets the ContextMenuStrip associated with this event. |
ContextMenuType | Get type of context menu. |
Delta | (Inherited from System.Windows.Forms.MouseEventArgs) |
Location | (Inherited from System.Windows.Forms.MouseEventArgs) |
X | (Inherited from System.Windows.Forms.MouseEventArgs) |
Y | (Inherited from System.Windows.Forms.MouseEventArgs) |
See Also