Class
FrozenColumnsChangedEventArgs

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

IList<GridViewColumn>

The columns that are added.

removedFrozenColumns

IList<GridViewColumn>

The columns that are removed.

allFrozenColumns

IList<GridViewColumn>

All frozen columns.

Properties

AddedFrozenColumns

Gets the added frozen columns.

Declaration

cs-api-definition
public ReadOnlyCollection<GridViewColumn> AddedFrozenColumns { get; }

Property Value

ReadOnlyCollection<GridViewColumn>

AllFrozenColumns

Gets the all frozen columns.

Declaration

cs-api-definition
public ReadOnlyCollection<GridViewColumn> AllFrozenColumns { get; }

Property Value

ReadOnlyCollection<GridViewColumn>

RemovedFrozenColumns

Gets the removed frozen columns.

Declaration

cs-api-definition
public ReadOnlyCollection<GridViewColumn> RemovedFrozenColumns { get; }

Property Value

ReadOnlyCollection<GridViewColumn>