WLJS LogoWLJS Notebook

Row

Wolfram Kernel
Row[{object1, object2, ...}]

shows the list of any Wolfram Expressions in a row acting as a decoration. It supports many options for content aligment:

Row[{
  Graphics[{Red, Disk[]}, ImageSize->{18,18}, PlotRange->2], 
  Style["Hey there", Black]
}, Alignment->{{Right, Left},Center}, ImageSize->400]
Use Deploy to make the content uneditable and non-selectable

Or using it on slides with WLX

cell 1
Figure = Plot[x, {x,0,1}];
Editor = EditorView["Plot[x, {x,0,1}] -> "];
cell 2
.slide

<Row>
	<Editor/>
	<Figure/>
</Row>

Options

Dividers

Draws dividers between the elements of the row. Use All or a list to control individual dividers.

Spacings

Sets the spacing between adjacent elements.

Alignment

Aligns the elements within the row.

ImageSize

Specifies the size of the row in pixels.

BaselinePosition

Controls the vertical position of the row relative to surrounding content.

Supported output forms

On this page