guiLabelGetFontHeight | Multi Theft Auto: Wiki Skip to content

guiLabelGetFontHeight

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function returns the height of the font currently used in a GUI text label.

Syntax

guiLabelGetFontHeight ( )

Code Examples

client

This example creates a window, a text label, gets the text extent and font height, and sets the text label size according to these values.

-- create the window (the container for our label)
local myWindow = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )
-- create the label
local myLabel = guiCreateLabel ( 10, 10, 0, 0, "This is my text container", false, myWindow )
-- get the (absolute) text extent and font height, and use these to size the label
guiSetSize ( myLabel, guiLabelGetTextExtent ( myLabel ), guiLabelGetFontHeight ( myLabel ), false )

See Also

GUI Functions