Class
ColumnWidthChangedEventArgs

Event arguments providing the column index range affected by a width change operation.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

cs-api-definition
public class ColumnWidthChangedEventArgs : EventArgs

Inheritance: objectEventArgsColumnWidthChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnWidthChangedEventArgs(int, int)

Initializes a new ColumnWidthChangedEventArgs with the affected column range.

Declaration

cs-api-definition
public ColumnWidthChangedEventArgs(int fromIndex, int toIndex)

Parameters

fromIndex

int

From index.

toIndex

int

To index.

Properties

FromIndex

The zero-based index of the first column in the changed range.

Declaration

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

Property Value

int

The start index.

ToIndex

The zero-based index of the last column in the changed range.

Declaration

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

Property Value

int

The end index.