Table of Contents

Class GroupGridExportCell

Namespace
Avalonia.Controls
Assembly
Tripous.Avalonia.Controls.dll

Describes a cell included in a group grid export snapshot.

public class GroupGridExportCell
Inheritance
GroupGridExportCell
Inherited Members
Extension Methods

Constructors

GroupGridExportCell(GroupGridExportColumn, object, string)

Initializes a new instance of the GroupGridExportCell class.

public GroupGridExportCell(GroupGridExportColumn Column, object Value, string Text)

Parameters

Column GroupGridExportColumn

The export column.

Value object

The raw cell value.

Text string

The formatted display text.

Properties

Column

Gets the export column.

public GroupGridExportColumn Column { get; }

Property Value

GroupGridExportColumn

Text

Gets the formatted display text.

public string Text { get; }

Property Value

string

Value

Gets the raw cell value.

public object Value { get; }

Property Value

object