TextField:setTextColor

From GiderosMobile
Revision as of 08:19, 18 October 2024 by MoKaLux (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2011.6
Class: TextField

Description

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

TextField:setTextColor(color)

Parameters

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

Examples

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