Function
|
Description
|
void EditableTextSetText(string value)
|
Sets the text to display.
|
string EditableTextGetText()
|
Returns the currently displayed text.
|
void EditableTextSetTextRotationMode(int value)
|
Sets the text Rotation mode. See below for a list of constants.
|
int EditableTextGetTextRotationMode()
|
Returns the current text Rotation mode. See below for a list of constants.
|
void EditableTextSetTextSplittingMode(int value)
|
Sets the text Splitting mode. See below for a list of constants.
|
int EditableTextGetTextSplittingMode()
|
Returns the current text Splitting mode. See below for a list of constants.
|
void EditableTextSetRepeatText(int value)
|
Use value 1 (TRUE) to activate Repeat Text, which means that the text is repeated to fill empty space. Use value 0 (FALSE) to deactivate it.
|
int EditableTextGetRepeatText()
|
Returns 1 (TRUE) if Repeat Text is activated, otherwise 0 (FALSE).
|
void EditableTextToggleRepeatText()
|
Activates or deactivates Repeat Text, depending on the current state.
|
void EditableTextSetReverseWords(int value)
|
Use value 1 (TRUE) to invert the words' order, for example "Music makes the light" becomes "light the makes Music". Use value 0 (FALSE) to use the default setting.
|
int EditableTextGetReverseWords()
|
Returns 1 (TRUE) if the words' order is inverted, otherwise 0 (FALSE).
|
void EditableTextToggleReverseWords()
|
Inverts the words' order or uses the default setting, depending on the current state.
|
void EditableTextSetReverseCharacters(int value)
|
Use value 1 (TRUE) to invert the characters' order, for example "Music makes the light" becomes "thgil eht sekam cisuM". Use value 0 (FALSE) to use the default setting.
|
int EditableTextGetReverseCharacters()
|
Returns 1 (TRUE) if the characters' order is inverted, otherwise 0 (FALSE).
|
void EditableTextToggleReverseCharacters()
|
Inverts the characters' order or uses the default setting, depending on the current state.
|
void EditableTextSetFontFaceName(string value)
|
Sets the font face name. Valid values for value should not exceed a length of 31 characters.
|
string EditableTextGetFontFaceName()
|
Returns the current font face name.
|
void EditableTextSetFontHeight(int value)
|
Sets the font height. Valid values for value can be positive or negative. However, positive and negative values are interpreted differently. Value 0 uses a default font height.
|
int EditableTextGetFontHeight()
|
Returns the current font height.
|
void EditableTextSetFontWidth(int value)
|
Sets the font width. Valid values for value should be positive.
|
int EditableTextGetFontWidth()
|
Returns the current font width.
|
void EditableTextSetFontWeight(int value)
|
Sets the font weight. Valid values for value range from 0 to 1000.
|
int EditableTextGetFontWeight()
|
Returns the current font weight.
|
void EditableTextSetFontItalic(int value)
|
Use value 1 (TRUE) to display italic text. Use value 0 (FALSE) to use the default setting.
|
int EditableTextGetFontItalic()
|
Returns 1 (TRUE) if the displayed text is italic, otherwise 0 (FALSE).
|
void EditableTextToggleFontItalic()
|
Displays italic text or uses the default setting, depending on the current state.
|
void EditableTextSetFontUnderline(int value)
|
Use value 1 (TRUE) to display underlined text. Use value 0 (FALSE) to use the default setting.
|
int EditableTextGetFontUnderline()
|
Returns 1 (TRUE) if the displayed text is underlined, otherwise 0 (FALSE).
|
void EditableTextToggleFontUnderline()
|
Displays underlined text or uses the default setting, depending on the current state.
|
void EditableTextSetFontStrikeOut(int value)
|
Use value 1 (TRUE) to display struck out text. Use value 0 (FALSE) to use the default setting.
|
int EditableTextGetFontStrikeOut()
|
Returns 1 (TRUE) if the displayed text is struck out, otherwise 0 (FALSE).
|
void EditableTextToggleFontStrikeOut()
|
Displays struck out text or uses the default setting, depending on the current state.
|