class ui.LineEdit

class LineEdit: ui.Widget {
    // enums

    enum EchoMode;

    // fields

    ui.LineEdit.EchoMode m_echoMode;

    // properties

    string_t bindable autoget property m_text;
    string_t autoget property m_placeholderText;
    ui.Alignment autoget property m_alignment;
    bool autoget property m_isReadOnly;

    // events

    event m_onReturnPressed();

    // construction

    construct();

    // methods

    void clear();
    void selectAll();
};

Inherited Members

public:
    // properties

    int autoget property m_minimumWidth;
    int autoget property m_minimumHeight;
    int autoget property m_maximumWidth;
    int autoget property m_maximumHeight;
    ui.SizePolicy autoget property m_horizontalSizePolicy;
    ui.SizePolicy autoget property m_verticalSizePolicy;
    int autoget property m_horizontalStretch;
    int autoget property m_verticalStretch;
    bool autoget property m_isVisible;
    bool autoget property m_isEnabled;
    string_t autoget property m_toolTip;
    string_t autoget property m_styleSheet;

    // methods

    void setFocus();