Tao.FreeGlut SDK Documentation

Glut.glutSetIconTitle Method 

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

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

Parameters

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

Remarks

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

See Also

Glut Class | Tao.FreeGlut Namespace | glutCreateWindow | glutIconifyWindow | glutSetWindowTitle