New to Telerik Document ProcessingStart a free 30-day trial

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.PropertySystem

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public class RowColumnPropertyChangedEventArgs : EventArgs

Inheritance: objectEventArgsRowColumnPropertyChangedEventArgs

Inherited Members EventArgs.Empty

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

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

The changed property.

Constructors

Initializes a new instance of the RowColumnPropertyChangedEventArgs class.

C#
public RowColumnPropertyChangedEventArgs(IPropertyDefinition property, int fromIndex, int toIndex)
Parameters:propertyIPropertyDefinition

The property.

fromIndexint

The first index of the changed range.

toIndexint

The last index of the changed range.

Properties

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

C#
public int FromIndex { get; }
Property Value:

The first index of the changed range.

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

C#
public int ToIndex { get; }
Property Value:

The last index of the changed range.