Class
CellRangeInsertedOrRemovedEventArgs

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:

cs-api-definition
public class CellRangeInsertedOrRemovedEventArgs : EventArgs

Inheritance: objectEventArgsCellRangeInsertedOrRemovedEventArgs

Inherited Members EventArgs.Empty

Constructors

CellRangeInsertedOrRemovedEventArgs(CellRange, RangeType, bool)

Initializes a new instance of the CellRangeInsertedOrRemovedEventArgs class.

Declaration

cs-api-definition
public CellRangeInsertedOrRemovedEventArgs(CellRange range, RangeType rangeType, bool isRemove)

Parameters

range

CellRange

The range.

rangeType

RangeType

Type of the range.

isRemove

bool

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

cs-api-definition
public CellRange AffectedRange { get; }

Property Value

CellRange

The affected range.

IsRemove

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

Declaration

cs-api-definition
public bool IsRemove { get; }

Property Value

bool

The value indicating whether the type of change is remove.

Range

Gets the range where the insert or remove operation was applied.

Declaration

cs-api-definition
public CellRange Range { get; }

Property Value

CellRange

The range.

RangeType

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

Declaration

cs-api-definition
public RangeType RangeType { get; }

Property Value

RangeType

The type of the range.