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)
The routed event identifier for this instance of the RoutedEventArgs class.
columnGridViewColumnColumn that have been resized.
originalWidthGridViewLengthThe original width of the column.
newWidthGridViewLengthNew width of the column.
Properties
Gets or sets the column that have been resized.
C#
public GridViewColumn Column { get; }
The column.
Gets or sets the new width of the column.
C#
public GridViewLength NewWidth { get; }
The new width.
Gets or sets the original width of the column.
C#
public GridViewLength OriginalWidth { get; }
The original width.