UseDecimalComma Property
This command is no longer used and is only included for backward compatibility with older Grapher version scripts. All objects in the file will change to show the decimal comma change, not just the selected object.
The UseDecimalComma property returns or sets if commas are used as the decimal separator for numeric labels. Returns a Boolean.
Syntax
object.UseDecimalComma
object.UseDecimalComma = UseDecimalComma
Parameter | Type | Description |
UseDecimalComma | Boolean | required |
Example 1
This example demonstrates how to set commas as the decimal separator for all objects.
TickLabels.MajorFormat.UseDecimalComma = True
Example 2
This example shows how to return if labels use a decimal comma for all objects.
Debug.Print TickLabels.MajorFormat.UseDecimalComma
Used by: AutoLabelFormat object