ETextLocation

Choose your operating system:

Windows

macOS

Linux

References

Module

Slate

Header

/Engine/Source/Runtime/Slate/Public/Widgets/Text/ISlateEditableTextWidget.h

Include

#include "Widgets/Text/ISlateEditableTextWidget.h"

Syntax

enum ETextLocation
{
    BeginningOfDocument,
    EndOfDocument,
    BeginningOfLine,
    EndOfLine,
    PreviousPage,
    NextPage,
}

Values

Name

Description

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)