gc:setFont

From Inspired-Lua Wiki
Revision as of 19:36, 11 July 2011 by Adriweb (talk | contribs) (Created page with "'''setFont''' is a function that is part of gc. Sets the font for drawing text and measuring text size. When you call this function, <br /> {{Since|3.0}} ==Sy...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

setFont is a function that is part of gc.

Sets the font for drawing text and measuring text size. When you call this function,
This has been introduced in TI-Nspire OS 3.0 (Changes).


Syntax

gc:setFont(family, style, size, )

Parameter Type Description
family
string the font's name : "serif" or "sansserif"
style
string "r" for regular, "i" for italic, "b" for bold, "bi" for bold & italic
size
number a number (decimals are OK) from 6 to 255

Example

previousFont = gc:setFont("serif","bi",12) -- sets the font to Serif, Bold & Italic, Size 12. It also sets the name of the previous font (the one used before this function) in the variable 'previousfont'