LabKit MATLAB Workbench

reference

FrameworkApp SDK API

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");

Source

This page is generated from the MATLAB help text in +labkit/+app/+layout/statusPanel.m.