Navigation
API > API/Runtime > API/Runtime/Slate
| |
|
| Name |
ETextLocation |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Slate/Public/Widgets/Text/ISlateEditableTextWidget.h |
| Include Path |
#include "Widgets/Text/ISlateEditableTextWidget.h" |
Syntax
enum ETextLocation
{
BeginningOfDocument,
EndOfDocument,
BeginningOfLine,
EndOfLine,
PreviousPage,
NextPage,
}
Values
| Name |
Remarks |
| BeginningOfDocument |
Jump to the beginning of text. (e.g. Ctrl+Home) |
| EndOfDocument |
Jump to the end of text. (e.g. Ctrl+End) |
| BeginningOfLine |
Jump to the beginning of the line or beginning of text within a line (e.g. Home) |
| EndOfLine |
Jump to the end of line (e.g. End) |
| PreviousPage |
Jump to the previous page in this document (e.g. PageUp) |
| NextPage |
Jump to the next page in this document (e.g. PageDown) |