Efl.Text_Interactive.editable

Description

Whether the entry is editable.

By default text interactives are editable. However setting this property to false will make it so that key input will be disregarded.

Values

  • editable - If true, user input will be inserted in the entry, if not, the entry is read-only and no user input is allowed.

Signature

@property editable @pure_virtual {
    get {}
    set {}
    values {
        editable: bool;
    }
}

C signature

Eina_Bool efl_text_interactive_editable_get(const Eo *obj);
void efl_text_interactive_editable_set(Eo *obj, Eina_Bool editable);

Implemented by