TimeCellValue.fromTimeOfDateTime constructor

TimeCellValue.fromTimeOfDateTime(
  1. DateTime dt
)

Implementation

TimeCellValue.fromTimeOfDateTime(DateTime dt)
    : hour = dt.hour,
      minute = dt.minute,
      second = dt.second,
      millisecond = dt.millisecond,
      microsecond = dt.microsecond;