Tao.Sdl SDK Documentation

SdlTtf.TTF_Quit Method 

De-initialize the TTF engine

[Visual Basic]
Public Shared Sub TTF_Quit()
[C#]
public static void TTF_Quit();

Remarks

Shutdown and cleanup the truetype font API.

After calling this the SDL_ttf functions should not be used, excepting TTF_WasInit. You may, of course, use TTF_Init to use the functionality again.

Binds to C-function in SDL_ttf.h

            void TTF_Quit()
            

Example

            TTF_Quit();
            // you could SDL_Quit(); here...or not.
            

See Also

SdlTtf Class | Tao.Sdl Namespace | TTF_Init | TTF_WasInit