ShortDateFormat
Gets the short date format of the system.
Compatibility
Available as of IDEA version 9.0
Syntax
ShortDateFormat
Example
Dim SimpleCommands As Object
Dim value As String
Sub Main
Set SimpleCommands = SmartContext.MacroCommands.SimpleCommands
'Return the short date pattern of the system.
value = SimpleCommands.ShortDateFormat
...
'Release object.
Set SimpleCommands = Nothing
End Sub