Files
infineon_plc/Packages/Beckhoff.TwinCAT.HMI.Controls.14.4.1/runtimes/native1.12-tchmi/dist/TcHmiToggleSwitch/TcHmiToggleSwitch.esm.d.ts
m.heisig 2d11c43579 Added minimal functionality for Robot teaching
- Added minimal HMI
- Added possibility to open and close all chamber doors
2026-01-17 09:20:39 +01:00

48 lines
1.9 KiB
TypeScript

import { Control as TcHmiCheckbox } from '../TcHmiCheckbox/TcHmiCheckbox.esm.js';
declare class TcHmiToggleSwitch extends TcHmiCheckbox {
#private;
constructor(element: JQuery, pcElement: JQuery, attrs: TcHmi.Controls.ControlAttributeList);
/**
* If raised, the control object exists in control cache and constructor of each inheritation level was called.
* This function is only to be used by the System. Other function calls are not intended.
*/
__previnit(): void;
/**
* If raised, all attributes have been set to it's default or dom values.
* This function is only to be used by the System. Other function calls are not intended.
*/
__init(): void;
/**
* Is called by the system after the control instance gets part of the current DOM.
* This function is only to be used by the System. Other function calls are not intended.
*/
__attach(): void;
/**
* Is called by the system after the control instance is no longer part of the current DOM.
* This function is only to be used by the System. Other function calls are not intended.
*/
__detach(): void;
/**
* Destroy the current control instance.
* Will be called automatically if system destroys control!
*/
destroy(): void;
/**
* Returns an event handler function for the onResized event.
*/
protected __onResized(): void;
/**
* Processes the current toggleStateIconColor attribute value.
*/
protected __processToggleStateIconColor(): void;
}
export { TcHmiToggleSwitch as Control };
declare const _TcHmiToggleSwitch: typeof TcHmiToggleSwitch;
type tTcHmiToggleSwitch = TcHmiToggleSwitch;
declare global {
namespace TcHmi.Controls.Beckhoff {
const TcHmiToggleSwitch: typeof _TcHmiToggleSwitch;
type TcHmiToggleSwitch = tTcHmiToggleSwitch;
}
}
//# sourceMappingURL=TcHmiToggleSwitch.esm.d.ts.map