Base: expose enum NumberFormat to Python

This commit is contained in:
wmayer
2022-08-15 11:12:53 +02:00
parent d0ee6a46a0
commit b485f7943c
4 changed files with 26 additions and 12 deletions

View File

@@ -909,6 +909,13 @@ class Scheme(IntEnum):
App.Units.Scheme = Scheme
class NumberFormat(IntEnum):
Default = 0
Fixed = 1
Scientific = 2
App.Units.NumberFormat = NumberFormat
class ScaleType(IntEnum):
Other = -1
NoScaling = 0