Class GroupGridCellEditEventArgs
Provides data for group grid cell editing events.
public class GroupGridCellEditEventArgs : EventArgs
- Inheritance
-
GroupGridCellEditEventArgs
- Inherited Members
- Extension Methods
Constructors
GroupGridCellEditEventArgs(GroupGridCell, object)
Initializes a new instance of the GroupGridCellEditEventArgs class.
public GroupGridCellEditEventArgs(GroupGridCell Cell, object Value)
Parameters
CellGroupGridCellThe edited cell.
ValueobjectThe edit value.
Properties
Cancel
Gets or sets a value indicating whether the operation should be canceled.
public bool Cancel { get; set; }
Property Value
Cell
Gets the edited cell.
public GroupGridCell Cell { get; }
Property Value
ErrorMessage
Gets or sets the validation error message.
public string ErrorMessage { get; set; }
Property Value
Value
Gets or sets the edit value.
public object Value { get; set; }