Class RowHeightChangedEventArgs
Provides data for the RowHeightChanged event, indicating which rows had their heights modified.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class RowHeightChangedEventArgs : EventArgs
Constructors
RowHeightChangedEventArgs(Int32, Int32)
Initializes a new instance of the RowHeightChangedEventArgs class.
Declaration
public RowHeightChangedEventArgs(int fromIndex, int toIndex)
Parameters
|
System.Int32
fromIndex
From index. |
|
System.Int32
toIndex
To index. |
Properties
FromIndex
Gets the starting row index of the range where height changed.
Declaration
public int FromIndex { get; }
Property Value
|
System.Int32
The start index. |
ToIndex
Gets the ending row index of the range where height changed.
Declaration
public int ToIndex { get; }
Property Value
|
System.Int32
The end index. |