$Minute System Tag
- Last UpdatedNov 07, 2016
- 1 minute read
Returns the current minute of the hour.
Syntax
$Minute
Data Type
Integer (read only)
Example(s)
This script checks if it is 4:50 PM and if so, shows the window with the name Shift End.
IF $Minute==50 AND $Hour==16 THEN
Show "Shift End";
ENDIF;