Navigation
API > API/Developer > API/Developer/Localization > API/Developer/Localization/FLocTextHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedPtr< FManifestEntry > FindDependencyEntry
(
const FLocKey& InNamespace, |
Find an existing dependency entry using its namespace and context. | LocTextHelper.h | |
TSharedPtr< FManifestEntry > FindDependencyEntry
(
const FLocKey& InNamespace, |
Find an dependency entry using its namespace and key. | LocTextHelper.h |
FindDependencyEntry(const FLocKey &, const FManifestContext &, FString *)
Description
Find an existing dependency entry using its namespace and context.
| Name | FindDependencyEntry |
| 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 > FindDependencyEntry
(
const FLocKey & InNamespace,
const FManifestContext & InContext,
FString * OutDependencyFilePath
) const
The entry, or null if it couldn't be found.
Parameters
| Name | Remarks |
|---|---|
| InNamespace | Namespace of the text. |
| InContext | Context information for the text (including its key). |
| OutDependencyFilePath | Optional string to fill with the path to the manifest file that contained the matching dependency |
FindDependencyEntry(const FLocKey &, const FLocKey &, const FString , FString )
Description
Find an dependency entry using its namespace and key.
| Name | FindDependencyEntry |
| 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 > FindDependencyEntry
(
const FLocKey & InNamespace,
const FLocKey & InKey,
const FString * InSourceText,
FString * OutDependencyFilePath
) const
The entry, or null if it couldn't be found.
Parameters
| Name | Remarks |
|---|---|
| InNamespace | Namespace of the text. |
| InKey | Key of the text. |
| InSourceText | Optional source text pointer to compare against the source text in the entry. |
| OutDependencyFilePath | Optional string to fill with the path to the manifest file that contained the matching dependency. |