GetWindowClassName

PowerBuilder Native Interface

IPBX_VisualObject interface:

GetWindowClassName method

Description

Returns the name of the window.

Syntax

GetWindowClassName()

Return Values

LPCTSTR.

Examples

The string returned by GetWindowClassName is passed as an argument to the CreateControl method:

LPCTSTR CVisualExt::GetWindowClassName()
{
   return s_className;
}

Usage

The window must be registered before you call GetWindowClassName.

See Also