UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
KismetStringTableLibrary.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
9#include "KismetStringTableLibrary.generated.h"
10
11UCLASS(meta=(BlueprintThreadSafe, ScriptName="StringTableLibrary"), MinimalAPI)
13{
15
16
17 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Is String Table Registered"))
18 static ENGINE_API bool IsRegisteredTableId(const FName TableId);
19
21 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Is String Table Entry Registered"))
22 static ENGINE_API bool IsRegisteredTableEntry(const FName TableId, const FString& Key);
23
25 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get String Table Namespace"))
26 static ENGINE_API FString GetTableNamespace(const FName TableId);
27
29 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get String Table Entry Source String"))
30 static ENGINE_API FString GetTableEntrySourceString(const FName TableId, const FString& Key);
31
33 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get String Table Entry Meta-Data"))
34 static ENGINE_API FString GetTableEntryMetaData(const FName TableId, const FString& Key, const FName MetaDataId);
35
37 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get Registered String Tables"))
38 static ENGINE_API TArray<FName> GetRegisteredStringTables();
39
41 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get Keys from String Table"))
42 static ENGINE_API TArray<FString> GetKeysFromStringTable(const FName TableId);
43
45 UFUNCTION(BlueprintPure, Category="Utilities|String Table", meta=(DisplayName="Get Meta-Data IDs from String Table Entry"))
46 static ENGINE_API TArray<FName> GetMetaDataIdsFromStringTableEntry(const FName TableId, const FString& Key);
47};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UFUNCTION(...)
Definition ObjectMacros.h:745
#define GENERATED_UCLASS_BODY(...)
Definition ObjectMacros.h:768
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition NameTypes.h:617
Definition Array.h:670
Definition BlueprintFunctionLibrary.h:16
Definition KismetStringTableLibrary.h:13