| AlwaysSign |
bool |
Should the numerals always display the sign. IE: "+1". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
|
| MaximumFractionalDigits |
int32 |
How many fractional digits should be shown at maximum? May cause rounding. IE: HalfFromZero rounding and a maximum of 2 fractional digits means 0.009 -> "0.01". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
- Meta=(ClampMin="0")
|
| MaximumIntegralDigits |
int32 |
How many integral digits should be shown at maximum? May cause rounding. IE: A maximum of 2 integral digits means 100.0 -> "99". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
- Meta=(ClampMin="0")
|
| MinimumFractionalDigits |
int32 |
How many fractional digits should be shown at minimum? May cause digit "padding". IE: A minimum of 2 fractional digits means 1.0 -> "1.00". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
- Meta=(ClampMin="0")
|
| MinimumIntegralDigits |
int32 |
How many integral digits should be shown at minimum? May cause digit "padding". IE: A minimum of 3 integral digits means 1.0 -> "001". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
- Meta=(ClampMin="0")
|
| RoundingMode |
TEnumAsByte< ERoundingMode > |
The rounding mode to be used when the actual value can not be precisely represented due to restrictions on the number of integral or fractional digits. See values for details. |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
|
| UseGrouping |
bool |
Should the numerals use group separators. IE: "1,000,000". |
CommonNumericTextBlock.h |
- EditAnywhere
- BlueprintReadOnly
- Category="Numeral Formating"
|