'Declaration
Public Event EditModeStarting As EditModeStartingEventHandler
'Usage
Dim instance As FpSpread Dim handler As EditModeStartingEventHandler AddHandler instance.EditModeStarting, handler
public event EditModeStartingEventHandler EditModeStarting
Event Data
The event handler receives an argument of type EditModeStartingEventArgs containing data related to this event. The following EditModeStartingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets whether to cancel edit mode. |
EditFormula | Gets or sets whether the formula for the cell should be edited. |
RichText | Gets or sets a boolean value indicating whether the text will be edited as rich text. |
RichTextSupported | Gets a boolean value indicating whether the rich text can be editable. |
See Also