The application may choose to specify the font used in rendering the intuitext, or it may choose to use the default font for the system. To use the default font, set the itextfont field to null. some care must be taken when using the default font. When an intuitext object is rendered and no font is specified, the text will be rendered in the font set in the rastport. If the rastport font is null, the text will be rendered using gfxbase->defaultfont. also, intuitextlength() always uses GfxBase->DefaultFont when itextfont is null. the application must have open the graphics library in order to check the default font in GfxBase. (See the graphics library chapter for more information.) To use a specific font for this text, place a pointer to an initialized textattr structure in the itextfont field. intuition will only use the specified font if it is available through a call to the openfont() routine. To use a font from disk, the application must first open the font using the opendiskfont() function. for more information about using fonts, see the "graphics library and text" chapter in this manual.