Table of Contents

Class TableViewColumnPropertyChangedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the ColumnPropertyChanged event.

public class TableViewColumnPropertyChangedEventArgs : EventArgs
Inheritance
object
EventArgs
TableViewColumnPropertyChangedEventArgs

Constructors

TableViewColumnPropertyChangedEventArgs(TableViewColumn, string, int)

Initializes a new instance of the TableViewColumnPropertyChanged class.

public TableViewColumnPropertyChangedEventArgs(TableViewColumn column, string propertyName, int index)

Parameters

column TableViewColumn

The column that changed.

propertyName string

The name of the property that changed.

index int

The index of the column in the collection.

Properties

Column

Gets the column that changed.

public TableViewColumn Column { get; }

Property Value

TableViewColumn

Index

Gets the index of the column in the collection.

public int Index { get; }

Property Value

int

PropertyName

Gets the name of the property that changed.

public string PropertyName { get; }

Property Value

string