Class ColumnWidthChangedEventArgs
Contains data needed to handle the ColumnWidthChanged event.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ColumnWidthChangedEventArgs : RadRoutedEventArgs
Constructors
ColumnWidthChangedEventArgs(RoutedEvent, GridViewColumn, GridViewLength, GridViewLength)
Initializes a new instance of the Column
Declaration
public ColumnWidthChangedEventArgs(RoutedEvent routedEvent, GridViewColumn column, GridViewLength originalWidth, GridViewLength newWidth)
Parameters
System. The routed event identifier for this instance of the RoutedEventArgs class. |
Grid Column that have been resized. |
Grid The original width of the column. |
Grid New width of the column. |
Properties
Column
Gets or sets the column that have been resized.
Declaration
public GridViewColumn Column { get; }
Property Value
Grid The column. |
NewWidth
Gets or sets the new width of the column.
Declaration
public GridViewLength NewWidth { get; }
Property Value
Grid The new width. |
OriginalWidth
Gets or sets the original width of the column.
Declaration
public GridViewLength OriginalWidth { get; }
Property Value
Grid The original width. |