Navigation
API > API/Developer > API/Developer/Localization > API/Developer/Localization/FLocTextHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedPtr< FManifestEntry > FindSourceText
(
const FLocKey& InNamespace, |
Find an existing source text entry using its namespace and context. | LocTextHelper.h | |
TSharedPtr< FManifestEntry > FindSourceText
(
const FLocKey& InNamespace, |
Find an existing source text entry using its namespace and key. | LocTextHelper.h |
FindSourceText(const FLocKey &, const FManifestContext &)
Description
Find an existing source text entry using its namespace and context.
| Name | FindSourceText |
| Type | function |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
| Source | /Engine/Source/Developer/Localization/Private/LocTextHelper.cpp |
TSharedPtr < FManifestEntry > FindSourceText
(
const FLocKey & InNamespace,
const FManifestContext & InContext
) const
The entry, or null if it couldn't be found.
Parameters
| Name | Remarks |
|---|---|
| InNamespace | Namespace of the source text. |
| InContext | Context information for the source text (including its key). |
FindSourceText(const FLocKey &, const FLocKey &, const FString *)
Description
Find an existing source text entry using its namespace and key.
| Name | FindSourceText |
| Type | function |
| Header File | /Engine/Source/Developer/Localization/Public/LocTextHelper.h |
| Include Path | #include "LocTextHelper.h" |
| Source | /Engine/Source/Developer/Localization/Private/LocTextHelper.cpp |
TSharedPtr < FManifestEntry > FindSourceText
(
const FLocKey & InNamespace,
const FLocKey & InKey,
const FString * InSourceText
) const
The entry, or null if it couldn't be found.
Parameters
| Name | Remarks |
|---|---|
| InNamespace | Namespace of the source text. |
| InKey | Key of the source text. |
| InSourceText | Optional source text pointer to compare against the source text in the entry. |