getControlBasePathEx

[ Funktion ]

public static getControlBasePath(
    control: TcHmi.Controls.System.baseTcHmiControl
): string | null;

Gibt den Basispfad eines Controls basierend auf einer Instanz von TcHmi.Controls.System.baseTcHmiControl zurück. Dieser wird zum Beispiel benötigt, wenn Sie auf das Verzeichnis eines Controls zugreifen möchten.

Parameter

Name

Typ

Beschreibung

control

TcHmi.Controls.System.baseTcHmiControl

Referenz auf eine Instanz von TcHmi.Controls.System.baseTcHmiControl.

Rückgabewert

Typ

Beschreibung

string | null

Basispfad des Controls oder null falls der Typ nicht bekannt ist.

getControlBasePathEx 1:

Verfügbar ab Version 1.12

Beispiel - JavaScript

var fullImagePath = TcHmi.Environment.getControlBasePathEx(this) + '/images/myImg.png';