Class RowColumnPropertyChangedEventArgs
Provides data for events raised when a property changes across a range of rows or columns.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.PropertySystem
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class RowColumnPropertyChangedEventArgs : EventArgs
Constructors
RowColumnPropertyChangedEventArgs(IPropertyDefinition, Int32, Int32)
Initializes a new instance of the RowColumnPropertyChangedEventArgs class.
Declaration
public RowColumnPropertyChangedEventArgs(IPropertyDefinition property, int fromIndex, int toIndex)
Parameters
|
IPropertyDefinition
property
The property. |
|
System.Int32
fromIndex
The first index of the changed range. |
|
System.Int32
toIndex
The last index of the changed range. |
Properties
FromIndex
The starting row or column index of the range affected by the property change.
Declaration
public int FromIndex { get; }
Property Value
|
System.Int32
The first index of the changed range. |
Property
The property that changed within the specified range of rows or columns.
Declaration
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
public int ToIndex { get; }
Property Value
|
System.Int32
The last index of the changed range. |