Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Internationalization
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include | #include "Internationalization/Text.h" |
Syntax
struct FFormatArgumentData
Remarks
Used to pass argument/value pairs into FText::Format via UKismetTextLibrary::Format.
The primary consumer of this type is Blueprints (via a UHT mirror node). It is not expected that this be used in general C++ as FFormatArgumentValue is a much better type. The UHT struct is located here: Engine\Source\Runtime\Engine\Classes\Kismet\KismetTextLibrary.h
Variables
| Type | Name | Description | |
|---|---|---|---|
| FString | ArgumentName | ||
| FText | ArgumentValue | ||
| double | ArgumentValueDouble | ||
| float | ArgumentValueFloat | ||
| ETextGender | ArgumentValueGender | ||
| int64 | ArgumentValueInt | ||
| TEnumAsByte< EFormatArgumentType::Type > | ArgumentValueType | This is a non-unioned version of FFormatArgumentValue that only accepts the types needed by Blueprints It's used as a marshaller to create a real FFormatArgumentValue when performing a format |
Constructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | ResetValue () |
||
| FFormatArgumentValue |