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 | Referenz auf eine Instanz von TcHmi.Controls.System.baseTcHmiControl. |
Rückgabewert
Typ | Beschreibung |
---|---|
Basispfad des Controls oder null falls der Typ nicht bekannt ist. |
Verfügbar ab Version 1.12 |
Beispiel - JavaScript
var fullImagePath = TcHmi.Environment.getControlBasePathEx(this) + '/images/myImg.png';