Class GroupGridExportCell
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
ColumnGroupGridExportColumnThe export column.
ValueobjectThe raw cell value.
TextstringThe formatted display text.
Properties
Column
Gets the export column.
public GroupGridExportColumn Column { get; }
Property Value
Text
Gets the formatted display text.
public string Text { get; }
Property Value
Value
Gets the raw cell value.
public object Value { get; }