exists
[ Funktion ]
public static exists(
propertyName: string,
control: TcHmi.Controls.System.baseTcHmiControl
): boolean;
Ermittelt ob ein Binding zwischen einem Symbol und einem Control Attribut existiert.
Parameter
Name | Typ | Beschreibung |
---|---|---|
propertyName | Name des Attributes | |
control | Referenz auf die Control Instanz |
Rückgabewert
Typ | Beschreibung |
---|---|
Liefert true wenn das Attribut mit einem Symbol verknüpft ist. |
Verfügbar ab Version 1.10 |
Beispiel - JavaScript
var myControl = TcHmi.Controls.get('TcHmiTextbox_1');
if(myControl){
var result = TcHmi.Binding.exists('Text',myControl);
if(result){
// Binding exists
} else {
// Binding exists not
}
}