Table of Contents

Class TableViewColumnReorderingEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the ColumnReordering event.

public class TableViewColumnReorderingEventArgs : CancelEventArgs
Inheritance
object
EventArgs
CancelEventArgs
TableViewColumnReorderingEventArgs

Constructors

TableViewColumnReorderingEventArgs(TableViewColumn, int)

Initializes a new instance of the TableViewColumnReorderingEventArgs class.

public TableViewColumnReorderingEventArgs(TableViewColumn column, int dropIndex)

Parameters

column TableViewColumn

The column being reordered.

dropIndex int

The index where the column is being dropped.

Properties

Column

Gets the column being reordered.

public TableViewColumn Column { get; }

Property Value

TableViewColumn

DropIndex

Gets the index where the column is being dropped.

public int DropIndex { get; }

Property Value

int