DAZ Script |
---|
DzLCDNumber ( DzWidget parent ) |
DAZ Script | |
---|---|
void | displayFloat ( Number number ) |
void | displayInt ( Number number ) |
void | displayString ( String number ) |
Deprecated | |
void | display ( String number ) |
void | display ( Number number ) |
void | overflow () |
Provides a LCD-style number display.
The following digits and symbols can be displayed:
0/O, 1, 2, 3, 4, 5/S, 6, 7, 8, 9/g, - (minus), . (decimal point), A, B, C, D, E, F, h, H, L, o, P, r, u, U, Y, : (colon), ° (degree sign - which is specified as single quote in the string) and space.
Illegal characters are substituted with spaces.
Enumerated mode (number base) types.
—–
Enumerated segment style (visual appearance) types.
Holds the display mode of the number.
Holds the number of digits displayed in the widget.
Holds the style of the number.
Holds whether or not the decimal point is drawn between digits; takes up a digit of its own if false
.
Holds the value of the number.
DzLCDNumber( DzWidget parent )
Creates a LCD number widget as a child of the given parent widget.
Parameter(s):
void : displayFloat( Number number )
Displays the number specified.
Parameter(s):
Since:
void : displayInt( Number number )
Displays the number specified.
Parameter(s):
Since:
void : displayString( String number )
Displays the number represented by the specified string.
Parameter(s):
Attention:
Since:
void : display( String number )
Deprecated
Exists only to keep old code working. Do not use in new code. Use displayString() instead.
void : display( Number number )
Deprecated
Exists only to keep old code working. Do not use in new code. Use displayFloat() or displayInt() instead.
void : overflow()
Signature:“overflow()”
Emitted when the number is set to a value that exceeds the number of digits.