Properties of controls affect their appearance and operation, such as whether a timer will run once or repeat.
Hovering over a control and pressing F3 will open the Interface Editor through which properties may be set. For properties with ..., clicking it will open addition windows for setting the property.
.png)
Properties may also be set using instruction in the Debug/CLI, in data sent to MPJ, or in code of other controls.
!plot.nameCh0=Temperature
Properties of control can be read by the MakerPlot code by enclosing them in brackets using controlName.property, [plot.nameCh0].
? [plot.nameCh0] // print to Debug/CLI window.
Please see Properties for more information.
|