Difference between revisions of "TextField:setTextColor"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Available since:''' Gideros 2011.6<br/>
+
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
=== Description ===
+
=== <translate>Description</translate> ===
 
<translate><br />
 
<translate><br />
 
<br />
 
<br />
Line 10: Line 10:
 
  TextField:setTextColor(color)
 
  TextField:setTextColor(color)
 
</source>
 
</source>
=== Parameters ===
+
=== <translate>Parameters</translate> ===
 
'''color''': (number) <translate>color of the text in hexadecimal format.</translate> <br/>
 
'''color''': (number) <translate>color of the text in hexadecimal format.</translate> <br/>
=== Examples ===
+
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
 
<source lang="lua">textfield:setTextColor(0xff0000) -- red
 
<source lang="lua">textfield:setTextColor(0xff0000) -- red
 
textfield:setTextColor(0x00ff00) -- green
 
textfield:setTextColor(0x00ff00) -- green
 
textfield:setTextColor(0x0000ff) -- blue</source>
 
textfield:setTextColor(0x0000ff) -- blue</source>

Revision as of 08:28, 24 August 2018

Available since: Gideros 2011.6

Description



Sets the color of the text in a text field in hexadecimal format.


 TextField:setTextColor(color)

Parameters

color: (number) color of the text in hexadecimal format.

Examples

Example

textfield:setTextColor(0xff0000)	-- red
textfield:setTextColor(0x00ff00)	-- green
textfield:setTextColor(0x0000ff)	-- blue