- This wiki is out of date, use the continuation of this wiki instead
Get text color
From FenixWiki
(Difference between revisions)
Revision as of 18:47, 23 July 2007 (edit) Rincewind (Talk | contribs) (get_rpg works also for 8 bit colors) ← Previous diff |
Revision as of 23:58, 23 July 2007 (edit) (undo) 85.144.194.29 (Talk) (shifting the return text around) Next diff → |
||
Line 5: | Line 5: | ||
'''INT''' get_text_color() | '''INT''' get_text_color() | ||
- | Gets the current text color (the color where texts will be written in | + | Gets the current text [[color]] (the [[color]] where texts will be written in). |
== Parameters == | == Parameters == | ||
Line 11: | Line 11: | ||
== Returns == | == Returns == | ||
- | + | Returns the [[color]] text will be written in. | |
== Notes == | == Notes == |
Revision as of 23:58, 23 July 2007
Contents |
Definition
INT get_text_color()
Gets the current text color (the color where texts will be written in).
Parameters
None.
Returns
Returns the color text will be written in.
Notes
None.
Errors
<If someone knows, please edit!>
Example
Program test; Global My_text; Text_color; Begin Set_text_color(120); Write(0,320/2,200/2,4,"The color of this text is:"); Text_color=Get_text_color(); Write_int(0,320/2+100,200/2,4,offset Text_color); Loop Frame; End End
Used in example: set_text_color(), write(), write_int()