Second Function

TimeSerial 또는 TimeValue 함수를 사용하여 생성한 연속 시간 번호의 초를 나타내는 정수를 구합니다.

구문:

Second (Number)

반환 값:

Integer

매개 변수:

Number: 초를 계산하는 데 사용되는 연속 시간 번호를 포함하는 숫자 식입니다.

이 함수는 TimeSerial 함수와 반대되는 것으로, TimeSerial 또는 TimeValue 함수를 사용하여 생성한 연속 시간 값의 초를 구합니다. 예를 들어,

Print Second(TimeSerial(12,30,41))

값 41을 구합니다.

Error codes:

5 잘못된 프로시저 호출입니다.

예:

Sub ExampleSecond
    MsgBox "The exact second of the current time is "& Second( Now )
End Sub

Please support us!