reference
labkit.app.layout.statusPanel
Add a text display for current App status.
Syntax
node = labkit.app.layout.statusPanel(id, Name=Value)Description
Declares a current-status or static instruction display.
Inputs
id- Unique MATLAB identifier for the layout target.
Options
Title- Visible panel title. Default: "Status".
Text- Static text lines. When omitted, the runtime's latest status is displayed. Default: strings(1,0).
Lines- Approximate visible text lines. The native layout uses this hint to size short summaries without consuming detail-panel height. Integer from 1 through 12. Default: 5.
Outputs
node- Immutable internal layout node accepted by containers.
Errors
Throws labkit:app:contract:InvalidValue for an invalid ID.
Typical Call
node = labkit.app.layout.statusPanel("status");Related APIs
labkit.app.layout.logPanel— Add a text display for App log messages.labkit.app.CallbackContext— Provide declared App-neutral runtime capabilities.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.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/statusPanel.m.