class ui.IntProperty

class IntProperty: ui.Property {
    // properties

    int bindable autoget property m_value;
    int autoget property m_minValue;
    int autoget property m_maxValue;
    int autoget property m_spinBoxStep;

    // construction

    construct(string_t name);
};

Inherited Members

public:
    // fields

    ui.Property* readonly m_parent;

    // properties

    string_t autoget property m_name;
    string_t autoget property m_toolTip;
    string_t autoget property m_valueToolTip;
    bool autoget property m_isEnabled;

    // methods

    void addChildProperty(
        ui.Property* prop,
        ui.Property* beforeProp = null
    );

    void removeChildProperty(ui.Property* prop);