createEx2

[ Funktion ]

public static createEx2(
   expression: string,
   propertyName: string,
   control: TcHmi.Controls.System.baseTcHmiControl
): void;

Erstellt ein Binding zwischen einem Symbol und einem Control Attribut durch den Attribut-Namen.

Parameter

Name

Typ

Beschreibung

expression

string

Symbol Ausdruck

propertyName

string

Name der Control Eigenschaft.

control

TcHmi.Controls.System.baseTcHmiControl

Referenz auf die Control Instanz

Rückgabewert

Typ

Beschreibung

void

Kein Rückgabewert

createEx2 1:

Verfügbar ab Version 1.10

Beispiel - JavaScript

var myControl = TcHmi.Controls.get('TcHmiTextbox_1');
if(myControl){
    TcHmi.Binding.createEx2('%i%MyInternalSymbol_1%/i%', 'Text', myControl);
}