Difference between revisions of "Font:getWidth"

m
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
width = Font:getWidth( text )
+
width = font:getWidth( text )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
Line 11: Line 11:
 
== See Also ==
 
== See Also ==
 
* [[parent::Font]]
 
* [[parent::Font]]
 +
* [[Font:getHeight]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Determines the width of the given text. }}
 
{{#set:Description=Determines the width of the given text. }}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 +
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|Font:getWidth}}
 
{{i18n|Font:getWidth}}

Latest revision as of 16:39, 26 March 2021

Determines the maximum width (accounting for newlines) taken by the given string.

Function

Synopsis

width = font:getWidth( text )

Arguments

string text
A string.

Returns

number width
The width of the text.

See Also


Other Languages