|
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Pseudo-object > Control Pseudo-object Methods, Properties, Events > Common Methods and Properties > <ControlName>.Class |
Description
Get Windows control class name.
Syntax
' Get
controlClassAsString = <controlName>.Class
Returns
String, control class as text.
Remarks
Restrictions
Read only property.
See also
Examples
control add label name "myTitle", hDlg, %lTitle, "", 5, 5, 100, 25
' No need to use hDlg, %lTitle, you can use the name directly
' Will return "Edit"
MsgBox 0, myTitle.Class