ClassColumnWidthChangingEventArgs
Contains data needed to handle the ColumnWidthChanging event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class ColumnWidthChangingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsColumnWidthChangingEventArgs
Inherited Members
Constructors
ColumnWidthChangingEventArgs(RoutedEvent, GridViewColumn, GridViewLength, GridViewLength)
Initializes a new instance of the ColumnWidthChangingEventArgs class.
Declaration
public ColumnWidthChangingEventArgs(RoutedEvent routedEvent, GridViewColumn column, GridViewLength originalWidth, GridViewLength horizontalChange)
Parameters
routedEvent
RoutedEvent
The routed event.
column
The column.
originalWidth
Original Width of the column.
horizontalChange
The new width.
Properties
Column
Gets or sets the column that is being resized.
Declaration
public GridViewColumn Column { get; }
Property Value
The column.
HorizontalChangeWidth
Gets or sets the width of the horizontal change.
Declaration
public GridViewLength HorizontalChangeWidth { get; }
Property Value
The width of the horizontal change - positive if width increases, otherwise - negative.
OriginalWidth
Gets or sets the original width of the column.
Declaration
public GridViewLength OriginalWidth { get; }
Property Value
The original width.