Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FText
Description
=== !! This is an ADVANCED function. USE WITH CAUTION !! ===
Attempt to dynamically reference an EXISTING FText via its active display string in the live table. Note: This can ONLY find text that is currently localized (gathered, translated, and has an active display string in FTextLocalizationManager). If you need to find a localizable but untranslated text, see FText::AsLocalizable_Advanced. Note: Direct dynamic references to FText are EXTREMELY FRAGILE, and you may want to use a string table instead!
| Name | FindTextInLiveTable_Advanced |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
| Source | /Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp |
static bool FindTextInLiveTable_Advanced
(
const FTextKey & Namespace,
const FTextKey & Key,
FText & OutText,
const FString *const SourceString
)
true if OutText was set; otherwise false and OutText will be unmodified
Parameters
| Name | Remarks |
|---|---|
| Namespace | The namespace of the text to find (if any). |
| Key | The key of the text to find. |
| SourceString | If set (not empty) then the found text must also have been created from this source string. |