Class GridDataSortColumnsChangedEventArgs
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public sealed class GridDataSortColumnsChangedEventArgs : SyncfusionEventArgs
Constructors
GridDataSortColumnsChangedEventArgs(IList<GridDataSortColumn>, IList<GridDataSortColumn>, NotifyCollectionChangedAction)
Initializes a new instance of the GridDataSortColumnsChangedEventArgs class.
Declaration
public GridDataSortColumnsChangedEventArgs(IList<GridDataSortColumn> addedItems, IList<GridDataSortColumn> removedItems, NotifyCollectionChangedAction action)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<GridDataSortColumn> | addedItems | The added items. |
System.Collections.Generic.IList<GridDataSortColumn> | removedItems | The removed items. |
System.Collections.Specialized.NotifyCollectionChangedAction | action | The action. |
Properties
Action
Gets the action.
Declaration
public NotifyCollectionChangedAction Action { get; }
Property Value
Type | Description |
---|---|
System.Collections.Specialized.NotifyCollectionChangedAction | The action. |
AddedItems
Gets the added items.
Declaration
public IList<GridDataSortColumn> AddedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<GridDataSortColumn> | The added items. |
RemovedItems
Gets the removed items.
Declaration
public IList<GridDataSortColumn> RemovedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<GridDataSortColumn> | The removed items. |
Methods
ToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |