Raised when an in-place edit operation is about to start, before the in-place editor is displayed.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public event EventHandler<InplaceEditValidationEventArgs> InplaceEditStarting |
Visual Basic
Copy Code
|
|---|
Public Event InplaceEditStarting As EventHandler(Of InplaceEditValidationEventArgs) |
Event DataInplaceEditStarting event handlers receive an argument of type InplaceEditValidationEventArgs.
RemarksThis event can be used to prevent specific (or all) cells in a worksheet from being in-place editable. Set the Cancel property of the event argument to false to accomplish this.
See Also