faqts : Computers : Programming : Languages : Tse : Configuration : Display

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

Entry

TSE: Font: Size: Macro: Set: How to: How to set the size of a font from a macro in TSE?

Sep 19th, 2004 12:06
Knud van Eeden,


----------------------------------------------------------------------
--- Knud van Eeden --- 19 September 2004 - 09:03 pm ------------------

TSE: Font: Size: Macro: Set: How to: How to set the size of a font 
from a macro in TSE?

---

You can e.g. use the 'SetFont()' function.
See the TSE 'help' for more information.

e.g.

--- cut here: begin --------------------------------------------------

 PROC PROCFontSetTerminal( INTEGER fontsizeI )
  SetFont( "Terminal", fontsizeI * 256 + 12, _FONT_OEM_ )
 END

 PROC Main()
  PROCFontSetTerminal( 6 )
 END

<F12> Main()

--- cut here: end ----------------------------------------------------


---
---

Internet: see also:

---

TSE: Font: Size: Screen: How to possibly get a better overview of 
information on screen?
http://www.faqts.com/knowledge_base/view.phtml/aid/31454/fid/1708

----------------------------------------------------------------------