New to Telerik Document ProcessingStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the CellRangeInsertedOrRemovedEventArgs class.

C#
public CellRangeInsertedOrRemovedEventArgs(CellRange range, RangeType rangeType, bool isRemove)
Parameters:rangeCellRange

The range.

rangeTypeRangeType

Type of the range.

isRemovebool

The value indicating whether the type of change is remove.

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; }
Property Value:

The affected range.

Gets whether the operation is a remove (true) or insert (false).

C#
public bool IsRemove { get; }
Property Value:

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; }
Property Value:

The range.

Gets the scope of the operation: entire rows, entire columns, or partial cells.

C#
public RangeType RangeType { get; }
Property Value:

The type of the range.