Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FiveWin 1.9.2 - January 97 - createfont() creates a logical font with specific characteristics http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 CreateFont()           Creates a logical font with specific characteristics
--------------------------------------------------------------------------------

   Syntax:              CreateFont( <aFontDescription> )  --> <hFont>

                        This function creates a logical font that has the
                        specified characteristics in the array aFontDescription.

                        This function is used from the TFont Class. Use
                        Classes as they are much easier to use and more powerful.

   Parameters:

   <aFontDescription>   An array containing all the necessary information
                        for creating the font:

                                #define LF_HEIGHT          1
                                #define LF_WIDTH           2
                                #define LF_ESCAPEMENT      3
                                #define LF_ORIENTATION     4
                                #define LF_WEIGHT          5
                                #define LF_ITALIC          6
                                #define LF_UNDERLINE       7
                                #define LF_STRIKEOUT       8
                                #define LF_CHARSET         9
                                #define LF_OUTPRECISION   10
                                #define LF_CLIPPRECISION  11
                                #define LF_QUALITY        12
                                #define LF_PITCHANDFAMILY 13
                                #define LF_FACENAME       14

   Returns:

   <hFont>              The handle of the new created font. 0 if it
                        as not possible to create it.


   Source code:         SOURCE\\WINAPI\\FontCrea.c

   See also:            ChooseFont()



Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson