RealDocs

UKismetTextLibrary::TextIsFromStringTable

function Engine Blueprint Since unknown
#include "Kismet/KismetTextLibrary.h"
Access: public Specifiers: staticBlueprintPure

Description

Returns true if the given text is referencing a row in a string table rather than being a literal or generated FText.

Caveats & Gotchas

  • Displayed in Blueprint as 'Is Text from String Table', not the C++ function name.
  • This only tells you the text has a string table source — it does not tell you whether the referenced table/row still exists (use StringTableIdAndKeyFromText for that).

Signature

static bool TextIsFromStringTable(const FText& Text);

Parameters

Name Type Description Default
Text const FText& The text instance to check.

Return Type

bool

Example

Branch on string-table-backed text C++
if (UKismetTextLibrary::TextIsFromStringTable(SomeText))
{
    // Safe to look up the underlying table ID and key
}

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.