IPython Documentation

Table Of Contents

Previous topic

Module: html.widgets.widget_bool

Next topic

Module: html.widgets.widget_button

This Page

Note

This documentation is for a development version of IPython. There may be significant differences from the latest stable release.

Module: html.widgets.widget_box

Box class.

Represents a container that can be used to group other widgets.

3 Classes

class IPython.html.widgets.widget_box.Box(children=(), **kwargs)

Bases: IPython.html.widgets.widget.DOMWidget

Displays multiple widgets in a group.

__init__(children=(), **kwargs)
class IPython.html.widgets.widget_box.Popup(children=(), **kwargs)

Bases: IPython.html.widgets.widget_box.Box

Displays multiple widgets in an in page popup div.

class IPython.html.widgets.widget_box.FlexBox(children=(), **kwargs)

Bases: IPython.html.widgets.widget_box.Box

Displays multiple widgets using the flexible box model.

2 Functions

IPython.html.widgets.widget_box.VBox(*pargs, **kwargs)

Displays multiple widgets vertically using the flexible box model.

IPython.html.widgets.widget_box.HBox(*pargs, **kwargs)

Displays multiple widgets horizontally using the flexible box model.