Event arguments describing a cell range insert or remove operation, including the affected range and operation type.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public class CellRangeInsertedOrRemovedEventArgs : EventArgs
Inheritance: objectEventArgsCellRangeInsertedOrRemovedEventArgs
Inherited Members
Constructors
Initializes a new instance of the CellRangeInsertedOrRemovedEventArgs class.
Properties
Gets the full range of cells affected by the insert or remove operation, including cells beyond the operation range.
C#
public CellRange AffectedRange { get; }
The affected range.
Gets whether the operation is a remove (true) or insert (false).
C#
public bool IsRemove { get; }
The value indicating whether the type of change is remove.
Gets the range where the insert or remove operation was applied.
C#
public CellRange Range { get; }
The range.