Difference between revisions of "FontBase:layoutText"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | '''Available since:''' Gideros 2017.10<br/> | |
| − | ''' | + | '''Class:''' [[FontBase]]<br/> |
| − | ''' | + | |
| − | === | + | === Description === |
| − | + | Computes the layout of the given text according to a given rectangular region size, layout flags and other parameters. | |
| − | + | <syntaxhighlight lang="lua"> | |
| − | < | + | (table) = FontBase:layoutText(text,width,height,flags,letterSpacing,lineSpacing,tabSpace,breakChar) |
| − | Refer to | + | </syntaxhighlight> |
| + | |||
| + | Refer to [[TextField:setLayout]] for a description of the arguments. | ||
| + | |||
The returned table contains the following fields: | The returned table contains the following fields: | ||
| − | + | * x,y,w,h: computed bounding box of the full text | |
| − | + | * lines: the number of lines used to display the text | |
| − | + | * parts: information about individual chunks of texts | |
| − | + | ||
| − | Each table in the part field of the returned table | + | Each table in the part field of the returned table describes the placement of chunks of text. Their fields are: |
| − | + | * text: the text to display in this chunk | |
| − | + | * x,y,w,h: computed bounding box of this chunk | |
| − | + | * dx,dy: coordinates to draw this chunk at | |
| − | + | * sep: separator character that came just after this chunk in text block | |
| − | + | * line: line number this chunk belongs to | |
| − | + | ||
| − | + | === Parameters === | |
| − | + | '''text''': (string) <br/> | |
| − | === | + | '''width''': (number) <br/> |
| − | '''text''': (string) | + | '''height''': (number) <br/> |
| − | '''width''': (number) | + | '''flags''': (number, default=FontBase.TLF_NOWRAP) <br/> |
| − | '''height''': (number) | + | '''letterSpacing''': (number, default = 0) <br/> |
| − | '''flags''': (number, default=FontBase.TLF_NOWRAP) | + | '''lineSpacing''': (number, default = 0) <br/> |
| − | '''letterSpacing''': (number, default = 0) | + | '''tabSpace''': (number, default = 4) <br/> |
| − | '''lineSpacing''': (number, default = 0) | + | '''breakChar''': (string) '''optional'''<br/> |
| − | '''tabSpace''': (number, default = 4) | + | |
| − | '''breakChar''': (string) | + | === Return values === |
| − | === | + | '''Returns''' (table) a table describing how to draw the given text<br/> |
| − | ''' | + | |
| + | {{FontBase}} | ||
Latest revision as of 14:29, 13 July 2023
Available since: Gideros 2017.10
Class: FontBase
Description
Computes the layout of the given text according to a given rectangular region size, layout flags and other parameters.
(table) = FontBase:layoutText(text,width,height,flags,letterSpacing,lineSpacing,tabSpace,breakChar)
Refer to TextField:setLayout for a description of the arguments.
The returned table contains the following fields:
- x,y,w,h: computed bounding box of the full text
- lines: the number of lines used to display the text
- parts: information about individual chunks of texts
Each table in the part field of the returned table describes the placement of chunks of text. Their fields are:
- text: the text to display in this chunk
- x,y,w,h: computed bounding box of this chunk
- dx,dy: coordinates to draw this chunk at
- sep: separator character that came just after this chunk in text block
- line: line number this chunk belongs to
Parameters
text: (string)
width: (number)
height: (number)
flags: (number, default=FontBase.TLF_NOWRAP)
letterSpacing: (number, default = 0)
lineSpacing: (number, default = 0)
tabSpace: (number, default = 4)
breakChar: (string) optional
Return values
Returns (table) a table describing how to draw the given text