Older Newer
Fri, 27 Dec 2019 11:34:47 . . . . SyneRyder [fix formatting]


Changes by last author:

Added:
= getCtlClass =

== Syntax ==

int getCtlClass(int n)

== Return ==

Returns the class of control number n. If the class returned is 0 (or constant CC_UNUSED) it does not exists (not created or deleted).

One of the following will be returned:

||Constant name||Value||

||CC_ANIMATION||24||

||CC_BITMAP||20||

||CC_CHECKBOX||7||

||CC_COMBOBOX||12||

||CC_EDIT||15||

||CC_FRAME||17||

||CC_GROUPBOX||9||

||CC_ICON||21||

||CC_IMAGE||19||

||CC_LISTBOX||11||

||CC_OWNERDRAW||10||

||CC_PREVIEW||25||

||CC_PROGRESSBAR||14||

||CC_PUSHBUTTON||6||

||CC_RADIOBUTTON||8||

||CC_RECT||18||

||CC_SCROLLBAR||2||

||CC_SLIDER||13||

||CC_SPINNER||4||

||CC_STANDARD||1||

||CC_STATICTEXT||16||

||CC_TAB||27||

||CC_TOOLTIP||23||

||CC_TRACKBAR||3||

||CC_UNUSED||0||

||CC_UPDOWN||5||

||CC_ZOOM||26||

Please note that not all of the above constants and control types are available yet.