LiquidTechnologies.XmlObjects Namespace / LxDateTime Structure / CreateTime Method / CreateTime(Byte,Byte,Byte,Int16,Int16,Int16,Boolean) Method
The hour value (0-23)
The minute value (0-59)
The hour (0-59)
The millisecond value (0-999)
The microsecond value (0-999)
The nanosecond value (0-999)
true if the time is a UTC time, false if its a in the local timezone.

In This Topic
    CreateTime(Byte,Byte,Byte,Int16,Int16,Int16,Boolean) Method
    In This Topic
    Creates a new xsd xs:time (Type = LxDateTimeType.Time).
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function CreateTime( _
       ByVal hour As System.Byte, _
       ByVal minute As System.Byte, _
       ByVal second As System.Byte, _
       ByVal milli As System.Short, _
       ByVal micro As System.Short, _
       ByVal nano As System.Short, _
       Optional ByVal isUtc As System.Boolean _
    ) As LxDateTime
    public static LxDateTime CreateTime( 
       System.byte hour,
       System.byte minute,
       System.byte second,
       System.short milli,
       System.short micro,
       System.short nano,
       System.bool isUtc
    )

    Parameters

    hour
    The hour value (0-23)
    minute
    The minute value (0-59)
    second
    The hour (0-59)
    milli
    The millisecond value (0-999)
    micro
    The microsecond value (0-999)
    nano
    The nanosecond value (0-999)
    isUtc
    true if the time is a UTC time, false if its a in the local timezone.

    Return Value

    A newly constructed LxDateTime
    Exceptions
    ExceptionDescription
    If any of the values are out of range
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also