Difference between revisions of "TextField.new"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Creates a new `TextField` object with the specified font and text. Gideros runtime includes a<b...")
 
Line 7: Line 7:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= TextField.new(fonttextsamplelayout,)
+
TextField.new(font,text,sample,layout)
 
</source>
 
</source>
'''font:''' (FontBase) The font used for displaying this `TextField` object. If nil, default font is used. ''''''<br/>
+
'''font''': (FontBase) The font used for displaying this `TextField` object. If nil, default font is used. ''''''<br/>
'''text:''' (string, optional) The text to be displayed. ''''''<br/>
+
'''text''': (string, optional) The text to be displayed. ''''''<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/>

Revision as of 11:16, 23 August 2018

Available since: Gideros 2011.6

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)

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