Warning

This documentation is for an old version of IPython. You can find docs for newer versions here.

Module: html.widgets.widget_int

Int class.

Represents an unbounded int using a widget.

5 Classes

class IPython.html.widgets.widget_int.IntText(value=None, **kwargs)

Bases: IPython.html.widgets.widget_int._Int

Textbox widget that represents a int.

class IPython.html.widgets.widget_int.BoundedIntText(*pargs, **kwargs)

Bases: IPython.html.widgets.widget_int._BoundedInt

Textbox widget that represents a int bounded by a minimum and maximum value.

class IPython.html.widgets.widget_int.IntSlider(*pargs, **kwargs)

Bases: IPython.html.widgets.widget_int._BoundedInt

Slider widget that represents a int bounded by a minimum and maximum value.

class IPython.html.widgets.widget_int.IntProgress(*pargs, **kwargs)

Bases: IPython.html.widgets.widget_int._BoundedInt

Progress bar that represents a int bounded by a minimum and maximum value.

class IPython.html.widgets.widget_int.IntRangeSlider(*pargs, **kwargs)

Bases: IPython.html.widgets.widget_int._BoundedIntRange

Slider widget that represents a pair of ints between a minimum and maximum value.