CasewareDocs

ShortTimeFormat

Gets the short time format of the system.

Compatibility

Available as of IDEA version 9.0

Syntax

ShortTimeFormat

Example

Dim SimpleCommands As Object

Dim value As String

Sub Main 
Set SimpleCommands = SmartContext.MacroCommands.SimpleCommands

'Return the short time pattern of the system.
value = SimpleCommands.ShortTimeFormat
...

'Release object.
Set SimpleCommands = Nothing
End Sub