Class ColumnWidthChangedEventArgs
Event arguments providing the column index range affected by a width change operation.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ColumnWidthChangedEventArgs : EventArgs
Constructors
ColumnWidthChangedEventArgs(Int32, Int32)
Initializes a new ColumnWidthChangedEventArgs with the affected column range.
Declaration
public ColumnWidthChangedEventArgs(int fromIndex, int toIndex)
Parameters
|
System.Int32
fromIndex
From index. |
|
System.Int32
toIndex
To index. |
Properties
FromIndex
The zero-based index of the first column in the changed range.
Declaration
public int FromIndex { get; }
Property Value
|
System.Int32
The start index. |
ToIndex
The zero-based index of the last column in the changed range.
Declaration
public int ToIndex { get; }
Property Value
|
System.Int32
The end index. |