TTMSFNCDataGridColumnFormatting Class
Defines how cell values in a column are formatted for display. Combines a formatting type (numeric, date/time, boolean, etc.) with a format string and optional boolean display texts.
API unit family: TMSFNCDataGridRenderer
Inherits from: TPersistent
Syntax
TTMSFNCDataGridColumnFormatting = class(TPersistent)
Properties
| Name | Description |
|---|---|
| BooleanFalseText | Display string shown in the cell when the underlying boolean value is False. Overrides the default "False" text. |
| BooleanTrueText | Display string shown in the cell when the underlying boolean value is True. Overrides the default "True" text. |
| ConvertSettings | Locale-specific format settings (decimal/thousand/date separators, currency symbol, etc.) used when rendering this column's cell values. Adjust to override the default Delphi locale on a per-column basis. |
| Format | Format string passed to FormatFloat, FormatDateTime, or similar Delphi format routines depending on Type. |