SpreadsheetControl.ProtectionWarning Event
Occurs when attempting to edit a locked cell in a protected worksheet.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.1.dll
NuGet Package: DevExpress.Win.Spreadsheet
Declaration
Event Data
The ProtectionWarning event's data class is HandledEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Handled | Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing. |
Remarks
If you want to customize the warning dialog which appears each time a user attempts to modify a locked cell, handle the ProtectionWarning event. To suppress the default warning dialog, set the e.Handled property to true. Invoke your own dialog within the event handler.
See Also