1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 15:51:20 +00:00
QB64-PE/internal/help/_FONTWIDTH.txt

30 lines
861 B
Plaintext
Raw Normal View History

The '''_FONTWIDTH''' function returns the font width of a MONOSPACE font handle created by {{KW|_LOADFONT}}.
{{PageSyntax}}
:{{Parameter|pixel_width%}} = {{KW|_FONTWIDTH}}[({{Parameter|font_handle}})]
* Will return width of last font used if a handle is not designated.
* '''Variable width fonts always return width 0.''' Even fixed width fonts will return 0 unless the "MONOSPACE" style option is used.
* '''"MONOSPACE" cannot be used on a variable width font.'''
* The font width is generally 3/4 of the [[_FONTHEIGHT]] specified when loading the font.
* In '''graphics''' [[SCREEN (statement)|screen]] modes, [[_PRINTWIDTH]] can return the total '''pixel width''' of a literal or variable [[STRING|string]] of text.
{{PageSeeAlso}}
*{{KW|_FONTHEIGHT}}
*{{KW|_FONT}}
*{{KW|_LOADFONT}}
*{{KW|_PRINTWIDTH}}
{{PageNavigation}}