Class CellRangeInsertedOrRemovedEventArgs
Event arguments describing a cell range insert or remove operation, including the affected range and operation type.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class CellRangeInsertedOrRemovedEventArgs : EventArgs
Constructors
CellRangeInsertedOrRemovedEventArgs(CellRange, RangeType, Boolean)
Initializes a new instance of the CellRangeInsertedOrRemovedEventArgs class.
Declaration
public CellRangeInsertedOrRemovedEventArgs(CellRange range, RangeType rangeType, bool isRemove)
Parameters
|
CellRange
range
The range. |
|
RangeType
rangeType
Type of the range. |
|
System.Boolean
isRemove
The value indicating whether the type of change is remove. |
Properties
AffectedRange
Gets the full range of cells affected by the insert or remove operation, including cells beyond the operation range.
Declaration
public CellRange AffectedRange { get; }
Property Value
|
CellRange
The affected range. |
IsRemove
Gets whether the operation is a remove (true) or insert (false).
Declaration
public bool IsRemove { get; }
Property Value
|
System.Boolean
The value indicating whether the type of change is remove. |
Range
Gets the range where the insert or remove operation was applied.
Declaration
public CellRange Range { get; }
Property Value
|
CellRange
The range. |
RangeType
Gets the scope of the operation: entire rows, entire columns, or partial cells.
Declaration
public RangeType RangeType { get; }
Property Value
|
RangeType
The type of the range. |