<cDateTime>.Filetime

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > BuiltIn Functions > Date and Time > cDateTime > cDateTime_Properties >

<cDateTime>.Filetime

 

Description

 

Returns a Quad-Integer value of the cDateTime object as a FileTime structure

 

Syntax

 

s = <cDateTime>.FileTime

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning





 

Remarks

 

Representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).

 

Restrictions

 

Read only.

 

See also

 

See FILETIME UDT structure.

 

Examples

 

' Create an object with current date and time

Dim myDateTime As New cDateTime

 

' Show it to the user

MsgBox 0, "myDateTime FILETIME form:" + $CRLF + myDateTime.FileTime