Share

AcDbDate::setTime

C++

ACDBCORE2D_PORT void setTime(
    int hour, 
    int min, 
    int sec, 
    int msec
);

Description

Sets the time past midnight for the AcDbDate object through the parameters hour, min, sec, and msec. hour is in the range 0 to 23. min is in the range 0 to 59. sec is in the range 0 to 59. msec is in the range 0 to 999.

Parameters

Parameters Description
hour Input hour past midnight value
min Input minutes past hour value
sec Input seconds past min value
msec Input milliseconds past sec value

Links

AcDbDate

Previous Declaration

void setTime(

short hour,

short min,

short sec,

short msec

);

Was this information helpful?