New to Telerik UI for WPFStart a free 30-day trial

Contains data needed to handle the FrozenColumnsChanged event.

Definition

Namespace:Telerik.Windows.Controls.GridView.GridView

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class FrozenColumnsChangedEventArgs : RoutedEventArgs

Inheritance: objectFrozenColumnsChangedEventArgs

Constructors

Initializes a new instance of the FrozenColumnsChangedEventArgs class.

C#
public FrozenColumnsChangedEventArgs(IList<GridViewColumn> addedFrozenColumns, IList<GridViewColumn> removedFrozenColumns, IList<GridViewColumn> allFrozenColumns)
Parameters:addedFrozenColumnsIList<GridViewColumn>

The columns that are added.

removedFrozenColumnsIList<GridViewColumn>

The columns that are removed.

allFrozenColumnsIList<GridViewColumn>

All frozen columns.

Properties

Gets the added frozen columns.

C#
public ReadOnlyCollection<GridViewColumn> AddedFrozenColumns { get; }

Gets the all frozen columns.

C#
public ReadOnlyCollection<GridViewColumn> AllFrozenColumns { get; }

Gets the removed frozen columns.

C#
public ReadOnlyCollection<GridViewColumn> RemovedFrozenColumns { get; }