Graph IDE ► Programming ► Label
The following is a complete script for programming a Label graphic. It places a UTF8 string into the label. Not that assigning the string will not size to fit the label and will not change the label's bounding box.
Note that you can assign only string constants to the label. To construct strings using more general methods use a Plugin.
|
The general API is define in the section Graphic. The following is API description specific to the Label graphic.
@@method(public, instance) (void)setUFT8String:(const char *)aString;
| |
Call like this:
Assigns the string (aString) to the label without size to fit and without changing the label's bounding box. |