% Auto-generated: do not edit by hand
\name{dlcBoxPanel}

\alias{dlcBoxPanel}

\title{BoxPanel component}

\description{
A panel which arranges its widgets in a single row or column.   {@link https://jupyterlab.github.io/lumino/widgets/classes/boxpanel.html} @hideconstructor  @example //Python: import dash import dash_lumino_components as dlc  boxPanel = dlc.BoxPanel([   dlc.SplitPanel([], id="split-panel") ], id="box-panel")
}

\usage{
dlcBoxPanel(children=NULL, id=NULL, addToDom=NULL, alignment=NULL,
direction=NULL, spacing=NULL)
}

\arguments{
\item{children}{A list of or a singular dash component, string or number. The widgets
@type {Array<Panel, SplitPanel, DockPanel>}}

\item{id}{Character. ID of the widget
@type {string}}

\item{addToDom}{Logical. bool if the object has to be added to the dom directly
@type {boolean}}

\item{alignment}{Character. the content alignment of the layout ("start" | "center" | "end" | "justify")
@type {string}}

\item{direction}{Character. a type alias for a box layout direction ("left-to-right" | "right-to-left" | "top-to-bottom" | "bottom-to-top")
@type {string}}

\item{spacing}{Numeric. The spacing between items in the layout
@type {number}}
}

\value{named list of JSON elements corresponding to React.js properties and their values}

