Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FText
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void UnregisterTextGenerator () |
Unregisters a standard text generator factory function. | Internationalization/Text.h | |
static void UnregisterTextGenerator
(
FName TypeID |
Unregisters a factory function to be used with serialization of text generators within FText. | Internationalization/Text.h |
UnregisterTextGenerator()
Description
Unregisters a standard text generator factory function.
This function can be used if the class has a public static FName member named "TypeID".
| Name | UnregisterTextGenerator |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
template<typename T>
static void UnregisterTextGenerator()
Parameters
| Name | Remarks |
|---|---|
| T | the text generator class type |
UnregisterTextGenerator(FName)
Description
Unregisters a factory function to be used with serialization of text generators within FText.
| Name | UnregisterTextGenerator |
| 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 void UnregisterTextGenerator
(
FName TypeID
)
Parameters
| Name | Remarks |
|---|---|
| TypeID | the name to remove from registration |
See Also
- RegisterTextGenerator