removeEx2
[ Funktion ]
public static removeEx2(
expression: string | null, // obsolete
propertyName: string,
control: TcHmi.Controls.System.baseTcHmiControl
): void;
Entfernt ein Binding zwischen einem Symbol und einem Control Attribut.
Parameter
Name | Typ | Beschreibung |
---|---|---|
expression | Dieser Parameter wird nicht mehr benötigt | |
propertyName | Name der Control Eigenschaft. | |
control | Referenz auf die Control Instanz |
Rückgabewert
Typ | Beschreibung |
---|---|
void | Kein Rückgabewert |
Verfügbar ab Version 1.10 |
Beispiel - JavaScript
var myControl = TcHmi.Controls.get('TcHmiTextBox_1');
if(myControl){
TcHmi.Binding.removeEx2(null, 'Text', myControl);
}