class ui.InformationStatValue

class InformationStatValue: ui.InformationValue {
    // typedefs

    typedef string_t FormatFunc(uint64_t value);

    // fields

    ui.InformationStatValue.FormatFunc* m_formatFunc;
    string_t m_formatSpec;

    // properties

    uint64_t autoget property m_value;

    // construction

    construct(string_t name);
    destruct();

    // methods

    void forceUpdate();
};

Inherited Members

public:
    // properties

    string_t autoget property m_name;
    string_t autoget property m_toolTip;
    bool autoget property m_isEnabled;
    string_t autoget property m_value;
    string_t autoget property m_disabledValue;
    string_t autoget property m_valueToolTip;
    uint_t autoget property m_valueColor;
    bool autoget property m_isSelectionDependent;

    // methods

    void addChildItem(
        ui.InformationItem* item,
        ui.InformationItem* beforeItem = null
    );

    void removeChildItem(ui.InformationItem* item);