New to Telerik UI for WPFStart a free 30-day trial

Contains data needed to handle the ColumnWidthChanged event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class ColumnWidthChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsColumnWidthChangedEventArgs

Constructors

Initializes a new instance of the ColumnWidthChangedEventArgs class.

C#
public ColumnWidthChangedEventArgs(RoutedEvent routedEvent, GridViewColumn column, GridViewLength originalWidth, GridViewLength newWidth)
Parameters:routedEventRoutedEvent

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

columnGridViewColumn

Column that have been resized.

originalWidthGridViewLength

The original width of the column.

newWidthGridViewLength

New width of the column.

Properties

Gets or sets the column that have been resized.

C#
public GridViewColumn Column { get; }
Property Value:

The column.

Gets or sets the new width of the column.

C#
public GridViewLength NewWidth { get; }
Property Value:

The new width.

Gets or sets the original width of the column.

C#
public GridViewLength OriginalWidth { get; }
Property Value:

The original width.