New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class ColumnWidthChangedEventArgs : EventArgs

Inheritance: objectEventArgsColumnWidthChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new ColumnWidthChangedEventArgs with the affected column range.

C#
public ColumnWidthChangedEventArgs(int fromIndex, int toIndex)
Parameters:fromIndexint

From index.

toIndexint

To index.

Properties

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

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

The start index.

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

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

The end index.