Class TableViewColumnPropertyChangedEventArgs
Provides data for the ColumnPropertyChanged event.
public class TableViewColumnPropertyChangedEventArgs : EventArgs
- Inheritance
-
objectEventArgsTableViewColumnPropertyChangedEventArgs
Constructors
TableViewColumnPropertyChangedEventArgs(TableViewColumn, string, int)
Initializes a new instance of the TableViewColumnPropertyChanged class.
public TableViewColumnPropertyChangedEventArgs(TableViewColumn column, string propertyName, int index)
Parameters
columnTableViewColumnThe column that changed.
propertyNamestringThe name of the property that changed.
indexintThe index of the column in the collection.
Properties
Column
Gets the column that changed.
public TableViewColumn Column { get; }
Property Value
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