Navigation
API > API/Runtime > API/Runtime/Slate
Represents a list of character ranges.
| Name | FCharRangeList |
| Type | struct |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Text/CharRangeList.h |
| Include Path | #include "Framework/Text/CharRangeList.h" |
Syntax
USTRUCT ()
struct FCharRangeList
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Ranges | TArray< FCharRange > | Framework/Text/CharRangeList.h |
|
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool AreAllCharsIncluded
(
const FString& InString |
Returns true if all the characters in the given string are included in any of the char ranges, or false otherwise. | Framework/Text/CharRangeList.h | |
void Empty() |
Empties this instance. | Framework/Text/CharRangeList.h | |
TSet< TCHAR > FindCharsNotIncluded
(
const FString& InString |
Finds all the characters in the given string that are not included in any of the char ranges. | Framework/Text/CharRangeList.h | |
bool InitializeFromString
(
const FString& InDefinitionString |
Initializes this instance with the character ranges represented by the passed definition string. | Framework/Text/CharRangeList.h | |
bool IsCharIncluded
(
TCHAR InChar |
Returns true if the given char is included in any of the char ranges, or false otherwise. | Framework/Text/CharRangeList.h | |
bool IsEmpty() |
Returns true if this instance does not contain any characters, or false otherwise. | Framework/Text/CharRangeList.h | |
FString ToString() |
Returns a definition string that represents all the character ranges in this instance. | Framework/Text/CharRangeList.h |