Class ColumnWidthChangedEventArgs
Contains data needed to handle the ColumnWidthChanged event.
Inherited Members
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 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. |
GridViewColumn
column
Column that have been resized. |
GridViewLength
originalWidth
The original width of the column. |
GridViewLength
newWidth
New width of the column. |
Properties
Column
Gets or sets the column that have been resized.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
The column. |
NewWidth
Gets or sets the new width of the column.
Declaration
public GridViewLength NewWidth { get; }
Property Value
GridViewLength
The new width. |
OriginalWidth
Gets or sets the original width of the column.
Declaration
public GridViewLength OriginalWidth { get; }
Property Value
GridViewLength
The original width. |