hour | (Long) hour. Number between 0-23. |
---|---|
minute | [optional] (Long) minute. Number between 0-59.
If not set, then the minute is not changed. |
second | [optional] (Long) second. Number between 0-59.
If not set, then the second not changed. |
milli | [optional] (Long) millisecond. Number between 0-999.
If not set, then the millisecond is not changed. |
var oDate = Pm.CreatePmDateObject();
oDate.SetHour(10);
var oDate = Pm.CreatePmDateObject();
oDate.SetHour(10, 30, 0, 0);