Class
RowColumnPropertyChangedEventArgs

Provides data for events raised when a property changes across a range of rows or columns.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.PropertySystem

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public class RowColumnPropertyChangedEventArgs : EventArgs

Inheritance: objectEventArgsRowColumnPropertyChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

RowColumnPropertyChangedEventArgs(IPropertyDefinition, int, int)

Initializes a new instance of the RowColumnPropertyChangedEventArgs class.

Declaration

cs-api-definition
public RowColumnPropertyChangedEventArgs(IPropertyDefinition property, int fromIndex, int toIndex)

Parameters

property

IPropertyDefinition

The property.

fromIndex

int

The first index of the changed range.

toIndex

int

The last index of the changed range.

Properties

FromIndex

The starting row or column index of the range affected by the property change.

Declaration

cs-api-definition
public int FromIndex { get; }

Property Value

int

The first index of the changed range.

Property

The property that changed within the specified range of rows or columns.

Declaration

cs-api-definition
public IPropertyDefinition Property { get; }

Property Value

IPropertyDefinition

The changed property.

ToIndex

The ending row or column index (inclusive) of the range affected by the property change.

Declaration

cs-api-definition
public int ToIndex { get; }

Property Value

int

The last index of the changed range.