int TimeSeconds(datetime time)
Returns the amount of seconds elapsed from the beginning of the minute
for the specified time.
指定された時刻の分の初めから経過した秒の量を返します。
Parameters:
パラメータ:
| time |
- |
Datetime is the number of seconds elapsed since midnight (00:00:00), January 1, 1970. 1970年1月1日真夜中(00:00:00)からの経過秒の Datetime 数値。 |
|
Sample:
サンプル:
int m=TimeSeconds(TimeCurrent());
|