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

null, string

Dieser Parameter wird nicht mehr benötigt

propertyName

string

Name der Control Eigenschaft.

control

TcHmi.Controls.System.baseTcHmiControl

Referenz auf die Control Instanz

Rückgabewert

Typ

Beschreibung

void

Kein Rückgabewert

removeEx2 1:

Verfügbar ab Version 1.10

Beispiel - JavaScript

var myControl = TcHmi.Controls.get('TcHmiTextBox_1');
if(myControl){
    TcHmi.Binding.removeEx2(null, 'Text', myControl);
}