DgsWindowGetFontHeight

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function returns the height of the font currently used in title text of a DGS window.

Syntax

float dgsWindowGetFontHeight ( element theWindow )

Required Arguments

  • theWindow: The window to get the font height from.

Returns

Returns the absolute height of the font currently used in the window if the function is successful, false otherwise.

Example

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

DGS = exports.dgs
-- create the window
local myWindow = DGS:dgsCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )

-- get the (absolute) text extent and font height, and use these to resize the window width and title height
local textExtent = DGS:dgsWindowGetTextExtent( myWindow )
local fontHeight = DGS:dgsWindowGetFontHeight( myWindow )
DGS:dgsSetSize ( myWindow, textExtent, _, false )
DGS:dgsSetProperty ( myWindow, "titleHeight", fontHeight )


See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips