Class ColumnWidthChangingEventArgs
Contains data needed to handle the ColumnWidthChanging event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ColumnWidthChangingEventArgs : CancelRoutedEventArgs
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. |
GridViewColumn
column
The column. |
GridViewLength
originalWidth
Original Width of the column. |
GridViewLength
horizontalChange
The new width. |
Properties
Column
Gets or sets the column that is being resized.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
The column. |
HorizontalChangeWidth
Gets or sets the width of the horizontal change.
Declaration
public GridViewLength HorizontalChangeWidth { get; }
Property Value
GridViewLength
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
GridViewLength
The original width. |