ClassColumnWidthChangedEventArgs
Contains data needed to handle the ColumnWidthChanged event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class ColumnWidthChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsColumnWidthChangedEventArgs
Constructors
ColumnWidthChangedEventArgs(RoutedEvent, GridViewColumn, GridViewLength, GridViewLength)
Initializes a new instance of the ColumnWidthChangedEventArgs class.
Declaration
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
Column that have been resized.
originalWidth
The original width of the column.
newWidth
New width of the column.
Properties
Column
Gets or sets the column that have been resized.
Declaration
public GridViewColumn Column { get; }
Property Value
The column.
NewWidth
Gets or sets the new width of the column.
Declaration
public GridViewLength NewWidth { get; }
Property Value
The new width.
OriginalWidth
Gets or sets the original width of the column.
Declaration
public GridViewLength OriginalWidth { get; }
Property Value
The original width.