Table of Contents

Struct TableViewConditionalCellStyleContext

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

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

Column TableViewColumn

The column associated with the cell.

DataItem object

The data item represented by the cell.

Properties

Column

The column associated with the cell.

public TableViewColumn Column { readonly get; set; }

Property Value

TableViewColumn

DataItem

The data item represented by the cell.

public object? DataItem { readonly get; set; }

Property Value

object