Struct TableViewConditionalCellStyleContext
Represents the context information for evaluating a conditional cell style in a TableView.
public record struct TableViewConditionalCellStyleContext
Constructors
TableViewConditionalCellStyleContext(TableViewColumn, object?)
Represents the context information for evaluating a conditional cell style in a TableView.
public TableViewConditionalCellStyleContext(TableViewColumn Column, object? DataItem)
Parameters
ColumnTableViewColumnThe column associated with the cell.
DataItemobjectThe data item represented by the cell.
Properties
Column
The column associated with the cell.
public TableViewColumn Column { readonly get; set; }
Property Value
DataItem
The data item represented by the cell.
public object? DataItem { readonly get; set; }
Property Value
- object