Raised when an in-place edit operation is about to finish, before the in-place editor is closed.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public event EventHandler<InplaceEditValidationEventArgs> InplaceEditEnding |
Visual Basic
Copy Code
|
|---|
Public Event InplaceEditEnding As EventHandler(Of InplaceEditValidationEventArgs) |
Event DataInplaceEditEnding event handlers receive an argument of type InplaceEditValidationEventArgs.
RemarksThis event can be used to validate the input of an in-place editing operation. Set the Cancel property of the event argument to false to reject the in-place editing operation.
See Also