- This wiki is out of date, use the continuation of this wiki instead
Get text color
From FenixWiki
Contents |
[edit] Definition
INT get_text_color()
Gets the current text color (the color where texts will be written in).
[edit] Parameters
None.
[edit] Returns
INT: color the text will be written in.
[edit] Notes
None.
[edit] Errors
<If someone knows, please edit!>
[edit] Example
Program test;
Global
my_text;
text_color;
Begin
set_text_color( rgb(192,112,0) );
text_color = get_text_color();
write (0,320/2 ,200/2,4,"The color of this text is:");
write_int(0,320/2+100,200/2,4,&text_color);
Repeat
frame;
Until(key(_ESC))
End
Used in example: set_text_color(), write(), write_int(), key()

