Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UKismetTextLibrary
Description
Attempts to create a text instance from a string table ID and key.
This exists to allow programmatic look-up of a string table entry from dynamic content - you should favor setting your string table reference on a text property or pin wherever possible as it is significantly more robust (see "Make Literal Text").
| Name | TextFromStringTable |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetTextLibrary.h |
| Include Path | #include "Kismet/KismetTextLibrary.h" |
| Source | /Engine/Source/Runtime/Engine/Private/KismetTextLibrary.cpp |
UFUNCTION (BlueprintPure, Category="Utilities|Text",
Meta=(DisplayName="Make Text from String Table (Advanced)"))
static FText TextFromStringTable
(
const FName TableId,
const FString & Key
)
The found text, or a dummy text if the entry could not be found.