PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,916 @@
1
+ import typing, abc
2
+ from System.ComponentModel import INotifyPropertyChanged
3
+ from SIMULTAN.Utils import RowColumnIndex, RowColumnRange
4
+ from SIMULTAN.Data.Components import SimComponent, SimChildComponentEntry, SimComponentReference, SimComponentInstance, SimBaseParameter
5
+ from SIMULTAN.Data.Geometry import Face, Volume, GeometryModel
6
+ from System.Collections.ObjectModel import ObservableCollection_1
7
+ from System.Collections.Generic import IDictionary_2, List_1, IEnumerable_1, HashSet_1, Dictionary_2
8
+ from SIMULTAN.Data import SimObjectNew_1, SimId, SimManagedCollection_1, IReferenceLocation
9
+ from System import Guid, ValueTuple_2, DateTime
10
+ from SIMULTAN.Data.MultiValues import SimMultiValueBigTable
11
+ from SIMULTAN.Projects import ProjectData
12
+
13
+ class ISimDataMappingComponentRuleChild(ISimDataMappingRuleBase, typing.Protocol):
14
+ @abc.abstractmethod
15
+ def Clone(self) -> ISimDataMappingComponentRuleChild: ...
16
+
17
+
18
+ class ISimDataMappingFaceRuleChild(ISimDataMappingRuleBase, typing.Protocol):
19
+ @abc.abstractmethod
20
+ def Clone(self) -> ISimDataMappingFaceRuleChild: ...
21
+
22
+
23
+ class ISimDataMappingInstanceRuleChild(ISimDataMappingRuleBase, typing.Protocol):
24
+ @abc.abstractmethod
25
+ def Clone(self) -> ISimDataMappingInstanceRuleChild: ...
26
+
27
+
28
+ class ISimDataMappingRuleBase(INotifyPropertyChanged, typing.Protocol):
29
+ @property
30
+ def MappingDirection(self) -> SimDataMappingDirection: ...
31
+ @MappingDirection.setter
32
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
33
+ @property
34
+ def MaxDepth(self) -> int: ...
35
+ @MaxDepth.setter
36
+ def MaxDepth(self, value: int) -> int: ...
37
+ @property
38
+ def MaxMatches(self) -> int: ...
39
+ @MaxMatches.setter
40
+ def MaxMatches(self, value: int) -> int: ...
41
+ @property
42
+ def Name(self) -> str: ...
43
+ @Name.setter
44
+ def Name(self, value: str) -> str: ...
45
+ @property
46
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
47
+ @OffsetConsecutive.setter
48
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
49
+ @property
50
+ def OffsetParent(self) -> RowColumnIndex: ...
51
+ @OffsetParent.setter
52
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
53
+ @property
54
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
55
+ @ReferencePointConsecutive.setter
56
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
57
+ @property
58
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
59
+ @ReferencePointParent.setter
60
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
61
+ @property
62
+ def SheetName(self) -> str: ...
63
+ @SheetName.setter
64
+ def SheetName(self, value: str) -> str: ...
65
+ @property
66
+ def Tool(self) -> SimDataMappingTool: ...
67
+ @Tool.setter
68
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
69
+ @abc.abstractmethod
70
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
71
+ @abc.abstractmethod
72
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
73
+
74
+
75
+ class ISimDataMappingVolumeRuleChild(ISimDataMappingRuleBase, typing.Protocol):
76
+ @abc.abstractmethod
77
+ def Clone(self) -> ISimDataMappingVolumeRuleChild: ...
78
+
79
+
80
+ class SimDataMappingComponentFilterProperties(typing.SupportsInt):
81
+ @typing.overload
82
+ def __init__(self, value : int) -> None: ...
83
+ @typing.overload
84
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
85
+ def __int__(self) -> int: ...
86
+
87
+ # Values:
88
+ Name : SimDataMappingComponentFilterProperties # 0
89
+ Slot : SimDataMappingComponentFilterProperties # 1
90
+ InstanceIsRealized : SimDataMappingComponentFilterProperties # 2
91
+ InstanceType : SimDataMappingComponentFilterProperties # 3
92
+
93
+
94
+ class SimDataMappingComponentMappingProperties(typing.SupportsInt):
95
+ @typing.overload
96
+ def __init__(self, value : int) -> None: ...
97
+ @typing.overload
98
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
99
+ def __int__(self) -> int: ...
100
+
101
+ # Values:
102
+ Name : SimDataMappingComponentMappingProperties # 0
103
+ Slot : SimDataMappingComponentMappingProperties # 1
104
+ Id : SimDataMappingComponentMappingProperties # 2
105
+
106
+
107
+ class SimDataMappingDirection(typing.SupportsInt):
108
+ @typing.overload
109
+ def __init__(self, value : int) -> None: ...
110
+ @typing.overload
111
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
112
+ def __int__(self) -> int: ...
113
+
114
+ # Values:
115
+ Horizontal : SimDataMappingDirection # 0
116
+ Vertical : SimDataMappingDirection # 1
117
+
118
+
119
+ class SimDataMappingFaceFilterProperties(typing.SupportsInt):
120
+ @typing.overload
121
+ def __init__(self, value : int) -> None: ...
122
+ @typing.overload
123
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
124
+ def __int__(self) -> int: ...
125
+
126
+ # Values:
127
+ Name : SimDataMappingFaceFilterProperties # 0
128
+ FaceType : SimDataMappingFaceFilterProperties # 1
129
+ FileKey : SimDataMappingFaceFilterProperties # 2
130
+ FileTags : SimDataMappingFaceFilterProperties # 3
131
+
132
+
133
+ class SimDataMappingFaceMappingProperties(typing.SupportsInt):
134
+ @typing.overload
135
+ def __init__(self, value : int) -> None: ...
136
+ @typing.overload
137
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
138
+ def __int__(self) -> int: ...
139
+
140
+ # Values:
141
+ Name : SimDataMappingFaceMappingProperties # 0
142
+ Id : SimDataMappingFaceMappingProperties # 1
143
+ Area : SimDataMappingFaceMappingProperties # 2
144
+ Incline : SimDataMappingFaceMappingProperties # 3
145
+ Orientation : SimDataMappingFaceMappingProperties # 4
146
+
147
+
148
+ class SimDataMappingFaceType(typing.SupportsInt):
149
+ @typing.overload
150
+ def __init__(self, value : int) -> None: ...
151
+ @typing.overload
152
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
153
+ def __int__(self) -> int: ...
154
+
155
+ # Values:
156
+ Wall : SimDataMappingFaceType # 0
157
+ Floor : SimDataMappingFaceType # 1
158
+ Ceiling : SimDataMappingFaceType # 2
159
+ FloorOrCeiling : SimDataMappingFaceType # 3
160
+
161
+
162
+ class SimDataMappingFilterBase_GenericClasses(abc.ABCMeta):
163
+ Generic_SimDataMappingFilterBase_GenericClasses_SimDataMappingFilterBase_1_TPropertyEnum = typing.TypeVar('Generic_SimDataMappingFilterBase_GenericClasses_SimDataMappingFilterBase_1_TPropertyEnum')
164
+ def __getitem__(self, types : typing.Type[Generic_SimDataMappingFilterBase_GenericClasses_SimDataMappingFilterBase_1_TPropertyEnum]) -> typing.Type[SimDataMappingFilterBase_1[Generic_SimDataMappingFilterBase_GenericClasses_SimDataMappingFilterBase_1_TPropertyEnum]]: ...
165
+
166
+ class SimDataMappingFilterBase(SimDataMappingFilterBase_0, metaclass =SimDataMappingFilterBase_GenericClasses): ...
167
+
168
+ class SimDataMappingFilterBase_0(INotifyPropertyChanged, abc.ABC):
169
+ def __init__(self, value: typing.Any) -> None: ...
170
+ @property
171
+ def Value(self) -> typing.Any: ...
172
+ @Value.setter
173
+ def Value(self, value: typing.Any) -> typing.Any: ...
174
+
175
+
176
+ SimDataMappingFilterBase_1_TPropertyEnum = typing.TypeVar('SimDataMappingFilterBase_1_TPropertyEnum')
177
+ class SimDataMappingFilterBase_1(typing.Generic[SimDataMappingFilterBase_1_TPropertyEnum], SimDataMappingFilterBase_0):
178
+ def __init__(self, property: SimDataMappingFilterBase_1_TPropertyEnum, value: typing.Any) -> None: ...
179
+ @property
180
+ def Property(self) -> SimDataMappingFilterBase_1_TPropertyEnum: ...
181
+ @property
182
+ def Value(self) -> typing.Any: ...
183
+ @Value.setter
184
+ def Value(self, value: typing.Any) -> typing.Any: ...
185
+
186
+
187
+ class SimDataMappingFilterComponent(SimDataMappingFilterBase_1[SimDataMappingComponentFilterProperties]):
188
+ def __init__(self, property: SimDataMappingComponentFilterProperties, value: typing.Any) -> None: ...
189
+ @property
190
+ def Property(self) -> SimDataMappingComponentFilterProperties: ...
191
+ @property
192
+ def Value(self) -> typing.Any: ...
193
+ @Value.setter
194
+ def Value(self, value: typing.Any) -> typing.Any: ...
195
+ def Clone(self) -> SimDataMappingFilterComponent: ...
196
+ # Skipped Match due to it being static, abstract and generic.
197
+
198
+ Match : Match_MethodGroup
199
+ class Match_MethodGroup:
200
+ @typing.overload
201
+ def __call__(self, matchObject: SimComponent) -> bool:...
202
+ @typing.overload
203
+ def __call__(self, matchObject: SimChildComponentEntry) -> bool:...
204
+ @typing.overload
205
+ def __call__(self, matchObject: SimComponentReference) -> bool:...
206
+
207
+
208
+
209
+ class SimDataMappingFilterFace(SimDataMappingFilterBase_1[SimDataMappingFaceFilterProperties]):
210
+ def __init__(self, property: SimDataMappingFaceFilterProperties, value: typing.Any) -> None: ...
211
+ @property
212
+ def Property(self) -> SimDataMappingFaceFilterProperties: ...
213
+ @property
214
+ def Value(self) -> typing.Any: ...
215
+ @Value.setter
216
+ def Value(self, value: typing.Any) -> typing.Any: ...
217
+ def Clone(self) -> SimDataMappingFilterFace: ...
218
+ def Match(self, face: Face) -> bool: ...
219
+
220
+
221
+ class SimDataMappingFilterInstance(SimDataMappingFilterBase_1[SimDataMappingInstanceFilterProperties]):
222
+ def __init__(self, property: SimDataMappingInstanceFilterProperties, value: typing.Any) -> None: ...
223
+ @property
224
+ def Property(self) -> SimDataMappingInstanceFilterProperties: ...
225
+ @property
226
+ def Value(self) -> typing.Any: ...
227
+ @Value.setter
228
+ def Value(self, value: typing.Any) -> typing.Any: ...
229
+ def Clone(self) -> SimDataMappingFilterInstance: ...
230
+ def Match(self, instance: SimComponentInstance) -> bool: ...
231
+
232
+
233
+ class SimDataMappingFilterParameter(SimDataMappingFilterBase_1[SimDataMappingParameterFilterProperties]):
234
+ def __init__(self, property: SimDataMappingParameterFilterProperties, value: typing.Any) -> None: ...
235
+ @property
236
+ def Property(self) -> SimDataMappingParameterFilterProperties: ...
237
+ @property
238
+ def Value(self) -> typing.Any: ...
239
+ @Value.setter
240
+ def Value(self, value: typing.Any) -> typing.Any: ...
241
+ def Clone(self) -> SimDataMappingFilterParameter: ...
242
+ def Match(self, parameter: SimBaseParameter) -> bool: ...
243
+
244
+
245
+ class SimDataMappingFilterType(typing.SupportsInt):
246
+ @typing.overload
247
+ def __init__(self, value : int) -> None: ...
248
+ @typing.overload
249
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
250
+ def __int__(self) -> int: ...
251
+
252
+ # Values:
253
+ String : SimDataMappingFilterType # 0
254
+ Regex : SimDataMappingFilterType # 1
255
+ TaxonomyEntry : SimDataMappingFilterType # 2
256
+ Slot : SimDataMappingFilterType # 3
257
+ InstanceType : SimDataMappingFilterType # 4
258
+ Boolean : SimDataMappingFilterType # 5
259
+ InfoFlow : SimDataMappingFilterType # 6
260
+ Category : SimDataMappingFilterType # 7
261
+ Integer : SimDataMappingFilterType # 8
262
+ WallType : SimDataMappingFilterType # 9
263
+ Null : SimDataMappingFilterType # 10
264
+
265
+
266
+ class SimDataMappingFilterVolume(SimDataMappingFilterBase_1[SimDataMappingVolumeFilterProperties]):
267
+ def __init__(self, property: SimDataMappingVolumeFilterProperties, value: typing.Any) -> None: ...
268
+ @property
269
+ def Property(self) -> SimDataMappingVolumeFilterProperties: ...
270
+ @property
271
+ def Value(self) -> typing.Any: ...
272
+ @Value.setter
273
+ def Value(self, value: typing.Any) -> typing.Any: ...
274
+ def Clone(self) -> SimDataMappingFilterVolume: ...
275
+ def Match(self, volume: Volume) -> bool: ...
276
+
277
+
278
+ class SimDataMappingInstanceFilterProperties(typing.SupportsInt):
279
+ @typing.overload
280
+ def __init__(self, value : int) -> None: ...
281
+ @typing.overload
282
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
283
+ def __int__(self) -> int: ...
284
+
285
+ # Values:
286
+ Name : SimDataMappingInstanceFilterProperties # 0
287
+ InstanceType : SimDataMappingInstanceFilterProperties # 1
288
+
289
+
290
+ class SimDataMappingInstanceMappingProperties(typing.SupportsInt):
291
+ @typing.overload
292
+ def __init__(self, value : int) -> None: ...
293
+ @typing.overload
294
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
295
+ def __int__(self) -> int: ...
296
+
297
+ # Values:
298
+ Name : SimDataMappingInstanceMappingProperties # 0
299
+ Id : SimDataMappingInstanceMappingProperties # 1
300
+
301
+
302
+ class SimDataMappingParameterFilterProperties(typing.SupportsInt):
303
+ @typing.overload
304
+ def __init__(self, value : int) -> None: ...
305
+ @typing.overload
306
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
307
+ def __int__(self) -> int: ...
308
+
309
+ # Values:
310
+ Name : SimDataMappingParameterFilterProperties # 0
311
+ Unit : SimDataMappingParameterFilterProperties # 1
312
+ Propagation : SimDataMappingParameterFilterProperties # 2
313
+ Category : SimDataMappingParameterFilterProperties # 3
314
+
315
+
316
+ class SimDataMappingParameterMappingProperties(typing.SupportsInt):
317
+ @typing.overload
318
+ def __init__(self, value : int) -> None: ...
319
+ @typing.overload
320
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
321
+ def __int__(self) -> int: ...
322
+
323
+ # Values:
324
+ Name : SimDataMappingParameterMappingProperties # 0
325
+ Id : SimDataMappingParameterMappingProperties # 1
326
+ Value : SimDataMappingParameterMappingProperties # 2
327
+ Description : SimDataMappingParameterMappingProperties # 3
328
+ Unit : SimDataMappingParameterMappingProperties # 4
329
+ Min : SimDataMappingParameterMappingProperties # 5
330
+ Max : SimDataMappingParameterMappingProperties # 6
331
+
332
+
333
+ class SimDataMappingParameterRange(typing.SupportsInt):
334
+ @typing.overload
335
+ def __init__(self, value : int) -> None: ...
336
+ @typing.overload
337
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
338
+ def __int__(self) -> int: ...
339
+
340
+ # Values:
341
+ SingleValue : SimDataMappingParameterRange # 0
342
+ CurrentRow : SimDataMappingParameterRange # 1
343
+ CurrentColumn : SimDataMappingParameterRange # 2
344
+ Table : SimDataMappingParameterRange # 3
345
+
346
+
347
+ class SimDataMappingReadRule(INotifyPropertyChanged):
348
+ def __init__(self) -> None: ...
349
+ @property
350
+ def Parameter(self) -> SimBaseParameter: ...
351
+ @Parameter.setter
352
+ def Parameter(self, value: SimBaseParameter) -> SimBaseParameter: ...
353
+ @property
354
+ def Range(self) -> RowColumnRange: ...
355
+ @Range.setter
356
+ def Range(self, value: RowColumnRange) -> RowColumnRange: ...
357
+ @property
358
+ def SheetName(self) -> str: ...
359
+ @SheetName.setter
360
+ def SheetName(self, value: str) -> str: ...
361
+ @property
362
+ def Tool(self) -> SimDataMappingTool: ...
363
+ @Tool.setter
364
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
365
+ def Clone(self) -> SimDataMappingReadRule: ...
366
+
367
+
368
+ class SimDataMappingReadRuleCollection(ObservableCollection_1[SimDataMappingReadRule]):
369
+ def __init__(self, owner: SimDataMappingTool) -> None: ...
370
+ @property
371
+ def Count(self) -> int: ...
372
+ @property
373
+ def Item(self) -> SimDataMappingReadRule: ...
374
+ @Item.setter
375
+ def Item(self, value: SimDataMappingReadRule) -> SimDataMappingReadRule: ...
376
+ @property
377
+ def Owner(self) -> SimDataMappingTool: ...
378
+
379
+
380
+ class SimDataMappingReferencePoint(typing.SupportsInt):
381
+ @typing.overload
382
+ def __init__(self, value : int) -> None: ...
383
+ @typing.overload
384
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
385
+ def __int__(self) -> int: ...
386
+
387
+ # Values:
388
+ BottomLeft : SimDataMappingReferencePoint # 0
389
+ TopRight : SimDataMappingReferencePoint # 1
390
+ TopLeft : SimDataMappingReferencePoint # 2
391
+
392
+
393
+ class SimDataMappingRootRuleCollection(ObservableCollection_1[SimDataMappingRuleComponent]):
394
+ def __init__(self, owner: SimDataMappingTool) -> None: ...
395
+ @property
396
+ def Count(self) -> int: ...
397
+ @property
398
+ def Item(self) -> SimDataMappingRuleComponent: ...
399
+ @Item.setter
400
+ def Item(self, value: SimDataMappingRuleComponent) -> SimDataMappingRuleComponent: ...
401
+ @property
402
+ def Mappings(self) -> IDictionary_2[SimDataMappingRuleComponent, List_1[SimComponent]]: ...
403
+ @property
404
+ def Owner(self) -> SimDataMappingTool: ...
405
+ def AddMapping(self, rule: SimDataMappingRuleComponent, component: SimComponent) -> None: ...
406
+ def AddMappings(self, rule: SimDataMappingRuleComponent, components: IEnumerable_1[SimComponent]) -> None: ...
407
+ def GetMappings(self, rule: SimDataMappingRuleComponent) -> IEnumerable_1[SimComponent]: ...
408
+ # Skipped RemoveMapping due to it being static, abstract and generic.
409
+
410
+ RemoveMapping : RemoveMapping_MethodGroup
411
+ class RemoveMapping_MethodGroup:
412
+ @typing.overload
413
+ def __call__(self, component: SimComponent) -> None:...
414
+ @typing.overload
415
+ def __call__(self, rule: SimDataMappingRuleComponent, component: SimComponent) -> None:...
416
+
417
+
418
+
419
+ class SimDataMappingRuleBase_GenericClasses(abc.ABCMeta):
420
+ Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TPropertyEnumeration = typing.TypeVar('Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TPropertyEnumeration')
421
+ Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TFilter = typing.TypeVar('Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TFilter')
422
+ def __getitem__(self, types : typing.Tuple[typing.Type[Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TPropertyEnumeration], typing.Type[Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TFilter]]) -> typing.Type[SimDataMappingRuleBase_2[Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TPropertyEnumeration, Generic_SimDataMappingRuleBase_GenericClasses_SimDataMappingRuleBase_2_TFilter]]: ...
423
+
424
+ SimDataMappingRuleBase : SimDataMappingRuleBase_GenericClasses
425
+
426
+ SimDataMappingRuleBase_2_TPropertyEnumeration = typing.TypeVar('SimDataMappingRuleBase_2_TPropertyEnumeration')
427
+ SimDataMappingRuleBase_2_TFilter = typing.TypeVar('SimDataMappingRuleBase_2_TFilter')
428
+ class SimDataMappingRuleBase_2(typing.Generic[SimDataMappingRuleBase_2_TPropertyEnumeration, SimDataMappingRuleBase_2_TFilter], ISimDataMappingRuleBase, abc.ABC):
429
+ def __init__(self, sheetName: str) -> None: ...
430
+ @property
431
+ def Filter(self) -> ObservableCollection_1[SimDataMappingRuleBase_2_TFilter]: ...
432
+ @property
433
+ def MappingDirection(self) -> SimDataMappingDirection: ...
434
+ @MappingDirection.setter
435
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
436
+ @property
437
+ def MaxDepth(self) -> int: ...
438
+ @MaxDepth.setter
439
+ def MaxDepth(self, value: int) -> int: ...
440
+ @property
441
+ def MaxMatches(self) -> int: ...
442
+ @MaxMatches.setter
443
+ def MaxMatches(self, value: int) -> int: ...
444
+ @property
445
+ def Name(self) -> str: ...
446
+ @Name.setter
447
+ def Name(self, value: str) -> str: ...
448
+ @property
449
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
450
+ @OffsetConsecutive.setter
451
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
452
+ @property
453
+ def OffsetParent(self) -> RowColumnIndex: ...
454
+ @OffsetParent.setter
455
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
456
+ @property
457
+ def Properties(self) -> ObservableCollection_1[SimDataMappingRuleBase_2_TPropertyEnumeration]: ...
458
+ @property
459
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
460
+ @ReferencePointConsecutive.setter
461
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
462
+ @property
463
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
464
+ @ReferencePointParent.setter
465
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
466
+ @property
467
+ def SheetName(self) -> str: ...
468
+ @SheetName.setter
469
+ def SheetName(self, value: str) -> str: ...
470
+ @property
471
+ def Tool(self) -> SimDataMappingTool: ...
472
+ @Tool.setter
473
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
474
+ @abc.abstractmethod
475
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
476
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
477
+
478
+
479
+ class SimDataMappingRuleComponent(SimDataMappingRuleBase_2[SimDataMappingComponentMappingProperties, SimDataMappingFilterComponent], ISimDataMappingInstanceRuleChild, ISimDataMappingVolumeRuleChild, ISimDataMappingFaceRuleChild, ISimDataMappingComponentRuleChild):
480
+ def __init__(self, sheetName: str) -> None: ...
481
+ @property
482
+ def Filter(self) -> ObservableCollection_1[SimDataMappingFilterComponent]: ...
483
+ @property
484
+ def MappingDirection(self) -> SimDataMappingDirection: ...
485
+ @MappingDirection.setter
486
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
487
+ @property
488
+ def MaxDepth(self) -> int: ...
489
+ @MaxDepth.setter
490
+ def MaxDepth(self, value: int) -> int: ...
491
+ @property
492
+ def MaxMatches(self) -> int: ...
493
+ @MaxMatches.setter
494
+ def MaxMatches(self, value: int) -> int: ...
495
+ @property
496
+ def Name(self) -> str: ...
497
+ @Name.setter
498
+ def Name(self, value: str) -> str: ...
499
+ @property
500
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
501
+ @OffsetConsecutive.setter
502
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
503
+ @property
504
+ def OffsetParent(self) -> RowColumnIndex: ...
505
+ @OffsetParent.setter
506
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
507
+ @property
508
+ def Properties(self) -> ObservableCollection_1[SimDataMappingComponentMappingProperties]: ...
509
+ @property
510
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
511
+ @ReferencePointConsecutive.setter
512
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
513
+ @property
514
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
515
+ @ReferencePointParent.setter
516
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
517
+ @property
518
+ def Rules(self) -> ObservableCollection_1[ISimDataMappingComponentRuleChild]: ...
519
+ @property
520
+ def SheetName(self) -> str: ...
521
+ @SheetName.setter
522
+ def SheetName(self, value: str) -> str: ...
523
+ @property
524
+ def Tool(self) -> SimDataMappingTool: ...
525
+ @Tool.setter
526
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
527
+ @property
528
+ def TraversalStrategy(self) -> SimDataMappingRuleTraversalStrategy: ...
529
+ @TraversalStrategy.setter
530
+ def TraversalStrategy(self, value: SimDataMappingRuleTraversalStrategy) -> SimDataMappingRuleTraversalStrategy: ...
531
+ def Clone(self) -> SimDataMappingRuleComponent: ...
532
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
533
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
534
+
535
+
536
+ class SimDataMappingRuleFace(SimDataMappingRuleBase_2[SimDataMappingFaceMappingProperties, SimDataMappingFilterFace], ISimDataMappingFaceRuleChild, ISimDataMappingVolumeRuleChild, ISimDataMappingInstanceRuleChild, ISimDataMappingComponentRuleChild):
537
+ def __init__(self, sheetName: str) -> None: ...
538
+ @property
539
+ def Filter(self) -> ObservableCollection_1[SimDataMappingFilterFace]: ...
540
+ @property
541
+ def MappingDirection(self) -> SimDataMappingDirection: ...
542
+ @MappingDirection.setter
543
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
544
+ @property
545
+ def MaxDepth(self) -> int: ...
546
+ @MaxDepth.setter
547
+ def MaxDepth(self, value: int) -> int: ...
548
+ @property
549
+ def MaxMatches(self) -> int: ...
550
+ @MaxMatches.setter
551
+ def MaxMatches(self, value: int) -> int: ...
552
+ @property
553
+ def Name(self) -> str: ...
554
+ @Name.setter
555
+ def Name(self, value: str) -> str: ...
556
+ @property
557
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
558
+ @OffsetConsecutive.setter
559
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
560
+ @property
561
+ def OffsetParent(self) -> RowColumnIndex: ...
562
+ @OffsetParent.setter
563
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
564
+ @property
565
+ def Properties(self) -> ObservableCollection_1[SimDataMappingFaceMappingProperties]: ...
566
+ @property
567
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
568
+ @ReferencePointConsecutive.setter
569
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
570
+ @property
571
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
572
+ @ReferencePointParent.setter
573
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
574
+ @property
575
+ def Rules(self) -> ObservableCollection_1[ISimDataMappingFaceRuleChild]: ...
576
+ @property
577
+ def SheetName(self) -> str: ...
578
+ @SheetName.setter
579
+ def SheetName(self, value: str) -> str: ...
580
+ @property
581
+ def Tool(self) -> SimDataMappingTool: ...
582
+ @Tool.setter
583
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
584
+ def Clone(self) -> SimDataMappingRuleFace: ...
585
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
586
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
587
+
588
+
589
+ class SimDataMappingRuleInstance(SimDataMappingRuleBase_2[SimDataMappingInstanceMappingProperties, SimDataMappingFilterInstance], ISimDataMappingFaceRuleChild, ISimDataMappingVolumeRuleChild, ISimDataMappingComponentRuleChild):
590
+ def __init__(self, sheetName: str) -> None: ...
591
+ @property
592
+ def Filter(self) -> ObservableCollection_1[SimDataMappingFilterInstance]: ...
593
+ @property
594
+ def MappingDirection(self) -> SimDataMappingDirection: ...
595
+ @MappingDirection.setter
596
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
597
+ @property
598
+ def MaxDepth(self) -> int: ...
599
+ @MaxDepth.setter
600
+ def MaxDepth(self, value: int) -> int: ...
601
+ @property
602
+ def MaxMatches(self) -> int: ...
603
+ @MaxMatches.setter
604
+ def MaxMatches(self, value: int) -> int: ...
605
+ @property
606
+ def Name(self) -> str: ...
607
+ @Name.setter
608
+ def Name(self, value: str) -> str: ...
609
+ @property
610
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
611
+ @OffsetConsecutive.setter
612
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
613
+ @property
614
+ def OffsetParent(self) -> RowColumnIndex: ...
615
+ @OffsetParent.setter
616
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
617
+ @property
618
+ def Properties(self) -> ObservableCollection_1[SimDataMappingInstanceMappingProperties]: ...
619
+ @property
620
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
621
+ @ReferencePointConsecutive.setter
622
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
623
+ @property
624
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
625
+ @ReferencePointParent.setter
626
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
627
+ @property
628
+ def Rules(self) -> ObservableCollection_1[ISimDataMappingInstanceRuleChild]: ...
629
+ @property
630
+ def SheetName(self) -> str: ...
631
+ @SheetName.setter
632
+ def SheetName(self, value: str) -> str: ...
633
+ @property
634
+ def Tool(self) -> SimDataMappingTool: ...
635
+ @Tool.setter
636
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
637
+ def Clone(self) -> SimDataMappingRuleInstance: ...
638
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
639
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
640
+
641
+
642
+ class SimDataMappingRuleParameter(SimDataMappingRuleBase_2[SimDataMappingParameterMappingProperties, SimDataMappingFilterParameter], ISimDataMappingInstanceRuleChild, ISimDataMappingComponentRuleChild):
643
+ def __init__(self, sheetName: str) -> None: ...
644
+ @property
645
+ def Filter(self) -> ObservableCollection_1[SimDataMappingFilterParameter]: ...
646
+ @property
647
+ def MappingDirection(self) -> SimDataMappingDirection: ...
648
+ @MappingDirection.setter
649
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
650
+ @property
651
+ def MaxDepth(self) -> int: ...
652
+ @MaxDepth.setter
653
+ def MaxDepth(self, value: int) -> int: ...
654
+ @property
655
+ def MaxMatches(self) -> int: ...
656
+ @MaxMatches.setter
657
+ def MaxMatches(self, value: int) -> int: ...
658
+ @property
659
+ def Name(self) -> str: ...
660
+ @Name.setter
661
+ def Name(self, value: str) -> str: ...
662
+ @property
663
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
664
+ @OffsetConsecutive.setter
665
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
666
+ @property
667
+ def OffsetParent(self) -> RowColumnIndex: ...
668
+ @OffsetParent.setter
669
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
670
+ @property
671
+ def ParameterRange(self) -> SimDataMappingParameterRange: ...
672
+ @ParameterRange.setter
673
+ def ParameterRange(self, value: SimDataMappingParameterRange) -> SimDataMappingParameterRange: ...
674
+ @property
675
+ def Properties(self) -> ObservableCollection_1[SimDataMappingParameterMappingProperties]: ...
676
+ @property
677
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
678
+ @ReferencePointConsecutive.setter
679
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
680
+ @property
681
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
682
+ @ReferencePointParent.setter
683
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
684
+ @property
685
+ def SheetName(self) -> str: ...
686
+ @SheetName.setter
687
+ def SheetName(self, value: str) -> str: ...
688
+ @property
689
+ def Tool(self) -> SimDataMappingTool: ...
690
+ @Tool.setter
691
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
692
+ def Clone(self) -> SimDataMappingRuleParameter: ...
693
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
694
+
695
+
696
+ class SimDataMappingRuleTraversalStrategy(typing.SupportsInt):
697
+ @typing.overload
698
+ def __init__(self, value : int) -> None: ...
699
+ @typing.overload
700
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
701
+ def __int__(self) -> int: ...
702
+
703
+ # Values:
704
+ Subtree : SimDataMappingRuleTraversalStrategy # 1
705
+ References : SimDataMappingRuleTraversalStrategy # 2
706
+ SubtreeAndReferences : SimDataMappingRuleTraversalStrategy # 3
707
+
708
+
709
+ class SimDataMappingRuleVolume(SimDataMappingRuleBase_2[SimDataMappingVolumeMappingProperties, SimDataMappingFilterVolume], ISimDataMappingFaceRuleChild, ISimDataMappingInstanceRuleChild, ISimDataMappingComponentRuleChild):
710
+ def __init__(self, sheetName: str) -> None: ...
711
+ @property
712
+ def Filter(self) -> ObservableCollection_1[SimDataMappingFilterVolume]: ...
713
+ @property
714
+ def MappingDirection(self) -> SimDataMappingDirection: ...
715
+ @MappingDirection.setter
716
+ def MappingDirection(self, value: SimDataMappingDirection) -> SimDataMappingDirection: ...
717
+ @property
718
+ def MaxDepth(self) -> int: ...
719
+ @MaxDepth.setter
720
+ def MaxDepth(self, value: int) -> int: ...
721
+ @property
722
+ def MaxMatches(self) -> int: ...
723
+ @MaxMatches.setter
724
+ def MaxMatches(self, value: int) -> int: ...
725
+ @property
726
+ def Name(self) -> str: ...
727
+ @Name.setter
728
+ def Name(self, value: str) -> str: ...
729
+ @property
730
+ def OffsetConsecutive(self) -> RowColumnIndex: ...
731
+ @OffsetConsecutive.setter
732
+ def OffsetConsecutive(self, value: RowColumnIndex) -> RowColumnIndex: ...
733
+ @property
734
+ def OffsetParent(self) -> RowColumnIndex: ...
735
+ @OffsetParent.setter
736
+ def OffsetParent(self, value: RowColumnIndex) -> RowColumnIndex: ...
737
+ @property
738
+ def Properties(self) -> ObservableCollection_1[SimDataMappingVolumeMappingProperties]: ...
739
+ @property
740
+ def ReferencePointConsecutive(self) -> SimDataMappingReferencePoint: ...
741
+ @ReferencePointConsecutive.setter
742
+ def ReferencePointConsecutive(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
743
+ @property
744
+ def ReferencePointParent(self) -> SimDataMappingReferencePoint: ...
745
+ @ReferencePointParent.setter
746
+ def ReferencePointParent(self, value: SimDataMappingReferencePoint) -> SimDataMappingReferencePoint: ...
747
+ @property
748
+ def Rules(self) -> ObservableCollection_1[ISimDataMappingVolumeRuleChild]: ...
749
+ @property
750
+ def SheetName(self) -> str: ...
751
+ @SheetName.setter
752
+ def SheetName(self, value: str) -> str: ...
753
+ @property
754
+ def Tool(self) -> SimDataMappingTool: ...
755
+ @Tool.setter
756
+ def Tool(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
757
+ def Clone(self) -> SimDataMappingRuleVolume: ...
758
+ def Execute(self, rootObject: typing.Any, state: SimTraversalState, data: SimMappedData) -> None: ...
759
+ def RestoreDefaultTaxonomyReferences(self) -> None: ...
760
+
761
+
762
+ class SimDataMappingTool(SimObjectNew_1[SimDataMappingToolCollection]):
763
+ def __init__(self, name: str) -> None: ...
764
+ @property
765
+ def Description(self) -> str: ...
766
+ @Description.setter
767
+ def Description(self, value: str) -> str: ...
768
+ @property
769
+ def Factory(self) -> SimDataMappingToolCollection: ...
770
+ @Factory.setter
771
+ def Factory(self, value: SimDataMappingToolCollection) -> SimDataMappingToolCollection: ...
772
+ @property
773
+ def GlobalID(self) -> Guid: ...
774
+ @property
775
+ def Id(self) -> SimId: ...
776
+ @Id.setter
777
+ def Id(self, value: SimId) -> SimId: ...
778
+ @property
779
+ def LocalID(self) -> int: ...
780
+ @property
781
+ def MacroName(self) -> str: ...
782
+ @MacroName.setter
783
+ def MacroName(self, value: str) -> str: ...
784
+ @property
785
+ def Name(self) -> str: ...
786
+ @Name.setter
787
+ def Name(self, value: str) -> str: ...
788
+ @property
789
+ def ReadRules(self) -> SimDataMappingReadRuleCollection: ...
790
+ @property
791
+ def Rules(self) -> SimDataMappingRootRuleCollection: ...
792
+ def Clone(self) -> SimDataMappingTool: ...
793
+ def Execute(self, components: HashSet_1[SimComponent] = ..., tableNameFormat: str = ..., overrideResults: bool = ..., addNewTables: bool = ...) -> ValueTuple_2[List_1[ValueTuple_2[str, SimMultiValueBigTable]], SimMappedData]: ...
794
+
795
+
796
+ class SimDataMappingToolCollection(SimManagedCollection_1[SimDataMappingTool]):
797
+ def __init__(self, owner: ProjectData) -> None: ...
798
+ @property
799
+ def CalledFromLocation(self) -> IReferenceLocation: ...
800
+ @property
801
+ def Count(self) -> int: ...
802
+ @property
803
+ def HasChanges(self) -> bool: ...
804
+ @property
805
+ def Item(self) -> SimDataMappingTool: ...
806
+ @Item.setter
807
+ def Item(self, value: SimDataMappingTool) -> SimDataMappingTool: ...
808
+ @property
809
+ def LastChange(self) -> DateTime: ...
810
+ @property
811
+ def ProjectData(self) -> ProjectData: ...
812
+ def EndLoading(self) -> None: ...
813
+ def StartLoading(self) -> None: ...
814
+
815
+
816
+ class SimDataMappingVolumeFilterProperties(typing.SupportsInt):
817
+ @typing.overload
818
+ def __init__(self, value : int) -> None: ...
819
+ @typing.overload
820
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
821
+ def __int__(self) -> int: ...
822
+
823
+ # Values:
824
+ Name : SimDataMappingVolumeFilterProperties # 0
825
+ FileKey : SimDataMappingVolumeFilterProperties # 1
826
+ FileTags : SimDataMappingVolumeFilterProperties # 2
827
+
828
+
829
+ class SimDataMappingVolumeMappingProperties(typing.SupportsInt):
830
+ @typing.overload
831
+ def __init__(self, value : int) -> None: ...
832
+ @typing.overload
833
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
834
+ def __int__(self) -> int: ...
835
+
836
+ # Values:
837
+ Name : SimDataMappingVolumeMappingProperties # 0
838
+ Id : SimDataMappingVolumeMappingProperties # 1
839
+ Volume : SimDataMappingVolumeMappingProperties # 2
840
+ FloorArea : SimDataMappingVolumeMappingProperties # 3
841
+ Height : SimDataMappingVolumeMappingProperties # 4
842
+ CeilingElevation : SimDataMappingVolumeMappingProperties # 5
843
+ FloorElevation : SimDataMappingVolumeMappingProperties # 6
844
+
845
+
846
+ class SimDataMappingWarning:
847
+ def __init__(self, type: SimDataMappingWarningType, rule: ISimDataMappingRuleBase, sheetName: str, index: RowColumnIndex) -> None: ...
848
+ @property
849
+ def Index(self) -> RowColumnIndex: ...
850
+ @property
851
+ def Rule(self) -> ISimDataMappingRuleBase: ...
852
+ @property
853
+ def SheetName(self) -> str: ...
854
+ @property
855
+ def Type(self) -> SimDataMappingWarningType: ...
856
+
857
+
858
+ class SimDataMappingWarningType(typing.SupportsInt):
859
+ @typing.overload
860
+ def __init__(self, value : int) -> None: ...
861
+ @typing.overload
862
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
863
+ def __int__(self) -> int: ...
864
+
865
+ # Values:
866
+ DataOverriden : SimDataMappingWarningType # 0
867
+
868
+
869
+ class SimMappedData:
870
+ def __init__(self) -> None: ...
871
+ @property
872
+ def Data(self) -> Dictionary_2[str, Dictionary_2[RowColumnIndex, typing.Any]]: ...
873
+ @property
874
+ def Warnings(self) -> IEnumerable_1[SimDataMappingWarning]: ...
875
+ def AddData(self, sheet: str, position: RowColumnIndex, data: typing.Any, source: ISimDataMappingRuleBase) -> None: ...
876
+ def ConvertToTable(self, sheetName: str, existingTable: SimMultiValueBigTable = ...) -> SimMultiValueBigTable: ...
877
+ @staticmethod
878
+ def ToExcelColumn(index: int) -> str: ...
879
+
880
+
881
+ class SimTraversalState:
882
+ def __init__(self) -> None: ...
883
+ @property
884
+ def CurrentPosition(self) -> RowColumnIndex: ...
885
+ @CurrentPosition.setter
886
+ def CurrentPosition(self, value: RowColumnIndex) -> RowColumnIndex: ...
887
+ @property
888
+ def Depth(self) -> int: ...
889
+ @Depth.setter
890
+ def Depth(self, value: int) -> int: ...
891
+ @property
892
+ def IncludeRoot(self) -> bool: ...
893
+ @IncludeRoot.setter
894
+ def IncludeRoot(self, value: bool) -> bool: ...
895
+ @property
896
+ def MatchCount(self) -> int: ...
897
+ @MatchCount.setter
898
+ def MatchCount(self, value: int) -> int: ...
899
+ @property
900
+ def ModelsToRelease(self) -> List_1[GeometryModel]: ...
901
+ @ModelsToRelease.setter
902
+ def ModelsToRelease(self, value: List_1[GeometryModel]) -> List_1[GeometryModel]: ...
903
+ @property
904
+ def Range(self) -> RowColumnRange: ...
905
+ @Range.setter
906
+ def Range(self, value: RowColumnRange) -> RowColumnRange: ...
907
+ @property
908
+ def RangeStack(self) -> List_1[RowColumnRange]: ...
909
+ @RangeStack.setter
910
+ def RangeStack(self, value: List_1[RowColumnRange]) -> List_1[RowColumnRange]: ...
911
+ @property
912
+ def VisitedObjects(self) -> HashSet_1[typing.Any]: ...
913
+ @VisitedObjects.setter
914
+ def VisitedObjects(self, value: HashSet_1[typing.Any]) -> HashSet_1[typing.Any]: ...
915
+ def ReleaseModels(self, projectData: ProjectData) -> None: ...
916
+