TExportCell → TExportCellCustomNumber
TExportCellCustomNumber is the abstract cell class for all number (number/percent/currency/date/time cells). Don't use it directly, use child classes instead.
Name | Type | Description |
---|---|---|
Value | Double | Number value of the cell. |
TExportCell → TExportCellCustomNumber → TExportCellNumber
Use TExportCellNumber for number (float and integer) cells.
Name | Type | Description |
---|---|---|
Value | Double | Number value of the cell. |
Format | TDecimalPlaces | Decimal places in the number. This is a deprecated property. Use DecimalPlaces instead. |
DecimalPlaces | TDecimalPlaces | Decimal places in the number. |
IntegerDigits | TIntegerDigits | Integer digits of the number. Example: IntegerDigits = 8 formats the number 123 as 00000123 |
NegativeRed | Boolean | Determines if negative numbers appear red. |
ThousandSep | Boolean | Switches on the thousand separator. |
EmptyIfZero | Boolean | Set to True if you don't want to show the 0 value. |
TExportCell → TExportCellCustomNumber → TExportCellNumber → TExportCellPercent
Use TExportCellPercent for percent (float and integer) cells.
Name | Type | Description |
---|---|---|
Please see TExportCellNumber above for inherited properties. |
TExportCell → TExportCellCustomNumber → TExportCellNumber → TExportCellCurrency
Use TExportCellCurrency for currency (float and integer) cells.
Name | Type | Description |
---|---|---|
CurrencyStr | OWideString | Currency string. Use €, EUR, $, USD etc. |
CurrencyPos | TExportCellCurrencyPosition | Currency position:
|
Please see TExportCellNumber above for inherited properties. |
TExportCell → TExportCellCustomNumber → TExportCellNumber → TExportCellScientific
Use TExportCellScientific for scientific (exponential) cells.
Name | Type | Description |
---|---|---|
ExponentDigits | TExponentDigits (1..3) |
Defines the number of digits in the exponent. E.g. 2 = 1,51E+01; 1 = 1,51E+1. |
Please see TExportCellNumber above for inherited properties. |