GetNativeClass Function

Class

AnyWin class.

Action

Returns the platform-specific class name for the window.

Availability

This functionality is supported only if you are using the Classic Agent.

Syntax

sClass = window.GetNativeClass()
Variable Description
sClass The internal, platform-specific class name for the window. STRING.

Notes

GetNativeClass returns the internal, platform-specific class name for a window. Use GetClass to return the platform-independent name of the class.

Example

WINDOW Wnd
STRING sClass
Wnd = TextEditor.GetActive()
sClass = Wnd.GetNativeClass()