Difference between revisions of "TextField.new"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[TextField]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Creates a new '''TextField''' object with the specified font and text. Gideros runtime includes a default font. If you specify ''nil'' for the font parameter while creating the '''TextField''' object, default font is used.
Creates a new `TextField` object with the specified font and text. Gideros runtime includes a<br />
+
<syntaxhighlight lang="lua">
default font. If you specify `nil` for the font parameter while creating the `TextField` object, default font is used.<br />
+
TextField.new(font,text,sample,layout)
<br />
+
</syntaxhighlight>
<source lang="lua">
+
 
TextField.new(font,text,sample,layout)
 
</source>
 
 
=== Parameters ===
 
=== Parameters ===
'''font''': (FontBase) The font used for displaying this `TextField` object. If nil, default font is used. <br/>
+
'''font''': (FontBase) the font used for displaying the TextField object. If nil, default font is used<br/>
'''text''': (string, optional) The text to be displayed. <br/>
+
'''text''': (string) the text to be displayed '''optional'''<br/>
 
'''sample''': (string) sample to determine line height '''optional'''<br/>
 
'''sample''': (string) sample to determine line height '''optional'''<br/>
'''layout''': (table) Layout parameters, see `TextField:setLayout` '''optional'''<br/>
+
'''layout''': (table) layout parameters, see [[TextField:setLayout]] '''optional'''<br/>
 +
 
 +
{{TextField}}

Latest revision as of 15:33, 13 July 2023


Available since: Gideros 2011.6
Class: TextField

Description

Creates a new TextField object with the specified font and text. Gideros runtime includes a default font. If you specify nil for the font parameter while creating the TextField object, default font is used.

TextField.new(font,text,sample,layout)

Parameters

font: (FontBase) the font used for displaying the TextField object. If nil, default font is used
text: (string) the text to be displayed optional
sample: (string) sample to determine line height optional
layout: (table) layout parameters, see TextField:setLayout optional