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