윈도우의 시스템 시간을 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
strFormat | STRING | 시간포멧(샘플소스 참고) |
Type | Description |
---|---|
STRING | 시간 |
function btn_getsystemtime_on_mouseup()
{
screen.alert("현재시각은 " + factory.getsystemtime("%Y-%M-%D %h:%m:%s %ms") + "초입니다.");
}