class ui.Label

class Label: ui.Widget {
    // fields

    ui.Icon* m_icon;

    // properties

    string_t autoget property m_text;
    ui.TextFormat autoget property m_textFormat;
    ui.Alignment autoget property m_alignment;

    // events

    event m_onLinkClicked(string_t link);

    // construction

    construct(string_t text);
};

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();