CasewareDocs

UseDefaultLocale

Specifies whether to enter the decimal values in its current culture format or in its invariant format (English format).

Compatibility

Available as of IDEA version 10.2

Syntax

UseDefaultLocale

Remark

This property has to be set before any other functions of the CreateDatabase object are called.

This property influences only double values.

Example

Sub Main 
Set CreateDatabase = SmartContext.MacroCommands.CreateDatabase
CreateDatabase.UseDefaultLocale = True
...
Set CreateDatabase = Nothing
End Sub