Atlas Engine
API Referencegraphite

TextFieldChangeEvent

Text field state supplied to a change callback.

Module: graphite

Text field state supplied to a change callback.

Declaration

export type TextFieldChangeEvent = {
        text: string;
        cursorPosition: number;
        focused: boolean;
    };

Properties

text

text: string;

cursorPosition

cursorPosition: number;

focused

focused: boolean;

On this page