Table of Contents

Class TableViewColumnReorderedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the ColumnReordered event.

public class TableViewColumnReorderedEventArgs : EventArgs
Inheritance
object
EventArgs
TableViewColumnReorderedEventArgs

Constructors

TableViewColumnReorderedEventArgs(TableViewColumn, int)

Initializes a new instance of the TableViewColumnReorderedEventArgs class.

public TableViewColumnReorderedEventArgs(TableViewColumn column, int index)

Parameters

column TableViewColumn

The column that was reordered.

index int

The new index of the column.

Properties

Column

Gets the column that was reordered.

public TableViewColumn Column { get; }

Property Value

TableViewColumn

Index

Gets the new index of the column.

public int Index { get; }

Property Value

int