ctrlClassName control

Operand types

control: Control

Type of returned value

Description

Returns the config class name of the given control.

Used In

Arma3

Example

_ctrls = "";
for "_i" from -1 to 10000 do {
with uiNamespace do {
_ctrl = findDisplay 46 displayCtrl _i;
if (!isNull _ctrl) then {
_ctrls = _ctrls + format ["IDC: %1, Class Name: %2n", _i, ctrlClassName _ctrl];
};
};
};
hint _ctrls;
Search OFPEC COMREF