removeEx

[ Function ]

public static removeEx(
   expression: string,
   fn: string,
   fnThis: TcHmi.Controls.System.baseTcHmiControl
): void;

Removes a binding between a symbol and a control attribute.

Parameter

Name

Type

Description

expression

null, string

Symbol expression

fn

string

Name of the control setter function

fnThis

TcHmi.Controls.System.baseTcHmiControl

Reference to the control instance

Return value

Type

Description

void

No return value

removeEx 1:

Available from 1.8

Sample - JavaScript

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