Tao.Sdl SDK Documentation

Sdl.SDL_WM_SetCaption Method 

Sets the title and icon text of the display window

[Visual Basic]
Public Shared Sub SDL_WM_SetCaption( _
   ByVal title As String, _
   ByVal icon As String _
)
[C#]
public static void SDL_WM_SetCaption(
   string title,
   string icon
);

Parameters

title
icon

Remarks

Sets the title-bar and icon name of the display window.

Binds to C-function call in SDL_video.h:

extern DECLSPEC void SDLCALL SDL_WM_SetCaption(const char *title, const char *icon)

See Also

Sdl Class | Tao.Sdl Namespace | SDL_WM_GetCaption | SDL_WM_SetIcon