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