' Rapid-Q by William Yu (c)1999-2000 . ' ================================================================================ ' Upload_il_tuo_script_su_Rapidq.it ' Qfont ****** QFONT Component ****** QFont is a component used to specify the font, color, and size for your text. It's not meant to be used as a stand-alone component, it has no effect until you assign a QFONT component to a component that uses it. QFont Properties Field Type R/W Default Support =============== =============== =============== =============== =============== Charset INTEGER RW DEFAULT_CHARSET W Color INTEGER RW W FontCount INTEGER R W FontName ARRAY of STRING R W Handle INTEGER RW W Name STRING RW WX Pitch INTEGER RW fpDefault W Size INTEGER RW WX QFont Methods Method Type Description Params Support =============== =============== =============== =============== =============== Add styles INTEGER, AddStyles SUBI [bold, italic, Infinite W etc] Delete styles INTEGER, DelStyles SUBI [bold, italic, Infinite W etc] QFont Examples $INCLUDE "RAPIDQ.INC" DIM Font AS QFONT DIM Label AS QLABEL Font.Name = "Arial" Font.AddStyles(fsBold, fsItalic) Label.Font = Font '' Assign font values ' =============================================================================== ' 2003 Holyguard.net - 2007_Abruzzoweb