reference
labkit.app.layout.tab
Add a named tab containing related child elements.
Syntax
node = labkit.app.layout.tab(id, title, children)Description
Declares one named control-side tab.
Inputs
id- Unique MATLAB identifier for the layout target.
title- Nonempty tab title.
children- Row cell array of compatible layout nodes.
Outputs
node- Immutable internal layout node accepted by workbench.
Errors
Throws labkit:app:contract:* for invalid IDs, titles, or children.
Typical Call
node = labkit.app.layout.tab("settings", "Settings", {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.group— Arrange related child elements without a titled boundary.labkit.app.layout.logPanel— Add a text display for App log messages.
Source
This page is generated from the MATLAB help text in +labkit/+app/+layout/tab.m.