reference
labkit.app.layout.group
Arrange related child elements without a titled boundary.
Syntax
node = labkit.app.layout.group(id, children, Name=Value)Description
Groups compatible control nodes into one semantic arrangement. A titled group draws a nested reader-facing boundary inside its owning section.
Inputs
id- Unique MATLAB identifier for the layout target.
children- Row cell array of layout nodes.
Options
Layout- "auto", "vertical", or "horizontal". Default: "auto".
Title- Reader-facing nested-group title or blank. Default: blank.
Outputs
node- Immutable internal layout node accepted by containers.
Errors
Throws labkit:app:contract:* for invalid IDs, children, or options.
Typical Call
node = labkit.app.layout.group("inputs", {gainField});Related APIs
labkit.app.layout.section— Arrange related child elements under a visible title.labkit.app.layout.workbench— Assemble controls and a central workspace into the root layout.labkit.app.layout.button— Add a push button with one explicit pressed callback.labkit.app.layout.dataTable— Add a tabular data display with optional editing and selection.labkit.app.layout.field— Add a text, numeric, choice, or logical input field.labkit.app.layout.fileList— Add file selection and portable-source controls.labkit.app.layout.logPanel— Add a text display for App log messages.labkit.app.layout.plotArea— Add one or more axes rendered by an App-owned renderer.
Source
This page is generated from the MATLAB help text in +labkit/+app/+layout/group.m.