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

\alias{dlcSplitPanel}

\title{SplitPanel component}

\description{
A panel which arranges its widgets into resizable sections.    {@link https://jupyterlab.github.io/lumino/widgets/classes/splitpanel.html} @hideconstructor  @example //Python: import dash import dash_lumino_components as dlc  splitPanel = dlc.SplitPanel([     dlc.TabPanel([], id="tab-panel"),     dlc.DockPanel([], id="dock-panel") ], id="split-panel")
}

\usage{
dlcSplitPanel(children=NULL, id=NULL, addToDom=NULL, alignment=NULL,
orientation=NULL, spacing=NULL)
}

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

\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{orientation}{Character. a type alias for a split layout orientation ("horizontal" | "vertical")
@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}

