App: expose PropertyType enum to Python

This commit is contained in:
wmayer
2022-05-03 11:24:23 +02:00
parent 583916a2e5
commit 95123b3399

View File

@@ -922,6 +922,17 @@ class ScaleType(IntEnum):
App.ScaleType = ScaleType
class PropertyType(IntEnum):
Prop_None = 0
Prop_ReadOnly = 1
Prop_Transient = 2
Prop_Hidden = 4
Prop_Output = 8
Prop_NoRecompute = 16
Prop_NoPersist = 32
App.PropertyType = PropertyType
# clean up namespace
del(InitApplications)
del(test_ascii)