Tao.FreeGlut SDK Documentation

Glut.glutSetWindowTitle Method 

Changes the window title of the current top-level window.

[Visual Basic]
Public Shared Sub glutSetWindowTitle( _
   ByVal name As String _
)
[C#]
public static void glutSetWindowTitle(
   string name
);

Parameters

name
Character string for the window name to be set for the window.

Remarks

glutSetWindowTitle should be called only when the current window is a top-level window. Upon creation of a top-level window, the window title is determined by the name parameter to glutCreateWindow. Once created, glutSetWindowTitle can change the window title of top-level windows. Each call requests the window system change the title appropriately. Requests are not buffered or coalesced. The policy by which the window title is displayed is window system dependent.

See Also

Glut Class | Tao.FreeGlut Namespace | glutCreateWindow | glutSetIconTitle