Type | Format | Description |
Subroutine | ExitXpanel() | Terminates Xpanel runtime. |
Function | GetTime(Value Type) | Returns the current time value. |
Subroutine | LcdBacklight(ON/OFF) | Turns the LCD Backlight on or off. |
Subroutine | LcdBrightDown() | Dims the LCD light. |
Subroutine | LcdBrightUp() | Brightens the LCD light. |
Subroutine | OpenConfigSub(Function) | Brings up the Xpanel Config. window or its subfeatures. |
Subroutine | OpenConfigWin() | Brings up the Xpanel Config. window. |
Subroutine | PlayWave(WavFileLocation, Path, Sync/Async) | Executes the wav file in the assigned path. |
Subroutine | SetDate(Year,Month,Date) | Changes the date on Xpanel. |
Subroutine | SetTime(Hour,Minute,Second) | Changes the time on Xpanel. |
Subroutine | ShowAudioMixer() | Opens up a volume mixer in Windows touch PC. |
Subroutine | ShowTouchKeyboard(X coordinate, Y coordinate, Pin/Unpin) | Opens up a touch keyboard in touch PC above Windows 8.1. |
Subroutine | StaticBeepCtrl(ON/OFF) | Controls the Beep output (On/Off) on Xpanel. |
Subroutine | TouchCalib() | Brings up the touch calibration screen. |
Subroutine | WindowsExplorer(“Path”, “Extension”, X Coordinate, Y Coordinate) | Brings up the Windows Explorer at the assigned position. |
Subroutine | XpanelReset() | Restarts the Xpanel Runtime. |
...
SetTime | Changes the time on the Xpanel. |
Subroutine | SetTime(Hour,Minute,Second) |
Description | Changes the time on the Xpanel. Hour : Enter the value between 0~24. Minute : Enter the value between 0~59. Second : Enter the value between 0~59. |
Example | Changes the time on the Xpanel to 18:15:30. SetTime(18,15,30); |
ShowAudioMixer | Opens up a volume mixer in Windows touch PC. |
Subroutine | ShowAudioMixer() |
Description | Opens up a volume mixer in Windows touch PC. |
Example | An audio mixer shows up in the screen. ShowAudioMixer(); |
ShowTouchKeyboard | Opens up a touch keyboard in touch PC above Windows 8.1. |
Subroutine | ShowTouchKeyboard(X coordinate, Y coordinate, Pin/Unpin) |
Description | Opens up a touch keyboard in touch PC above Windows 8.1. 0: Unpin 1: Pin |
Example | A touch keyboard shows up at (0,0) with pinned status. ShowTouchKeyboard(0, 0, 1); |
StaticBeepCtrl | Controls the Beep output (On/Off). |
Subroutine | StaticBeepCtrl(ON/OFF) |
Description | Controls the Beep output (On/Off). Assign 0 to turn off the beep sound. Other values will turn on the Beep. |
Example | Turns on the Beep. StaticBeepCtrl(1); |
...