Class
ColumnWidthChangedEventArgs

Contains data needed to handle the ColumnWidthChanged event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

cs-api-definition
public class ColumnWidthChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsColumnWidthChangedEventArgs

Constructors

ColumnWidthChangedEventArgs(RoutedEvent, GridViewColumn, GridViewLength, GridViewLength)

Initializes a new instance of the ColumnWidthChangedEventArgs class.

Declaration

cs-api-definition
public ColumnWidthChangedEventArgs(RoutedEvent routedEvent, GridViewColumn column, GridViewLength originalWidth, GridViewLength newWidth)

Parameters

routedEvent

RoutedEvent

The routed event identifier for this instance of the RoutedEventArgs class.

column

GridViewColumn

Column that have been resized.

originalWidth

GridViewLength

The original width of the column.

newWidth

GridViewLength

New width of the column.

Properties

Column

Gets or sets the column that have been resized.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

The column.

NewWidth

Gets or sets the new width of the column.

Declaration

cs-api-definition
public GridViewLength NewWidth { get; }

Property Value

GridViewLength

The new width.

OriginalWidth

Gets or sets the original width of the column.

Declaration

cs-api-definition
public GridViewLength OriginalWidth { get; }

Property Value

GridViewLength

The original width.