Class FrozenColumnsChangedEventArgs
Contains data needed to handle the FrozenColumnsChanged event.
Inheritance
Namespace: Telerik.Windows.Controls.GridView.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class FrozenColumnsChangedEventArgs : RoutedEventArgs
Constructors
FrozenColumnsChangedEventArgs(IList<GridViewColumn>, IList<GridViewColumn>, IList<GridViewColumn>)
Initializes a new instance of the FrozenColumnsChangedEventArgs class.
Declaration
public FrozenColumnsChangedEventArgs(IList<GridViewColumn> addedFrozenColumns, IList<GridViewColumn> removedFrozenColumns, IList<GridViewColumn> allFrozenColumns)
Parameters
System.Collections.Generic.IList<GridViewColumn>
addedFrozenColumns
The columns that are added. |
System.Collections.Generic.IList<GridViewColumn>
removedFrozenColumns
The columns that are removed. |
System.Collections.Generic.IList<GridViewColumn>
allFrozenColumns
All frozen columns. |
Properties
AddedFrozenColumns
Gets the added frozen columns.
Declaration
public ReadOnlyCollection<GridViewColumn> AddedFrozenColumns { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<GridViewColumn>
|
AllFrozenColumns
Gets the all frozen columns.
Declaration
public ReadOnlyCollection<GridViewColumn> AllFrozenColumns { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<GridViewColumn>
|
RemovedFrozenColumns
Gets the removed frozen columns.
Declaration
public ReadOnlyCollection<GridViewColumn> RemovedFrozenColumns { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<GridViewColumn>
|