getMap
[ Funktion ]
export function getMap(): Map<string, TcHmi.Controls.System.baseTcHmiControl>;
Gibt eine ES5 Map mit allen Controls zurück. Der Key ist der jeweilige Identifier der Controls.
Parameter
Name | Typ | Beschreibung |
---|---|---|
|
|
|
Rückgabewert
Typ | Beschreibung |
---|---|
Ein Objekt welches alle Controls enthält. |
Verfügbar ab Version 1.12 |
Beispiel
let allControls = TcHmi.Controls.getMap();
let someControl = allControls.get('TcHmiButton');
if (someControl && someControl instanceof TcHmi.Controls.Beckhoff.TcHmiButton) {
someControl.setText('Wow, we have ' + allControls.size + ' controls!');
}