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,582 @@
1
+ import typing, abc
2
+ from System.Collections import ICollection, IEnumerator, ReadOnlyCollectionBase, IDictionary, IList, IComparer
3
+ from System import Array, Array_1, Attribute, EventArgs, MarshalByRefObject, IDisposable, IServiceProvider, IAsyncResult, Delegate, EventHandler, Exception
4
+ from System.Globalization import CultureInfo
5
+ from System.Runtime.InteropServices import ExternalException
6
+ from System.Reflection import MethodBase
7
+ from System.Runtime.Serialization import SerializationInfo, StreamingContext
8
+
9
+ class AttributeCollection(ICollection):
10
+ def __init__(self, attributes: Array_1[Attribute]) -> None: ...
11
+ Empty : AttributeCollection
12
+ @property
13
+ def Count(self) -> int: ...
14
+ @property
15
+ def Item(self) -> Attribute: ...
16
+ @property
17
+ def Item(self) -> Attribute: ...
18
+ def CopyTo(self, array: Array, index: int) -> None: ...
19
+ @staticmethod
20
+ def FromExisting(existing: AttributeCollection, newAttributes: Array_1[Attribute]) -> AttributeCollection: ...
21
+ def GetEnumerator(self) -> IEnumerator: ...
22
+ # Skipped Contains due to it being static, abstract and generic.
23
+
24
+ Contains : Contains_MethodGroup
25
+ class Contains_MethodGroup:
26
+ @typing.overload
27
+ def __call__(self, attributes: Array_1[Attribute]) -> bool:...
28
+ @typing.overload
29
+ def __call__(self, attribute: Attribute) -> bool:...
30
+
31
+ # Skipped Matches due to it being static, abstract and generic.
32
+
33
+ Matches : Matches_MethodGroup
34
+ class Matches_MethodGroup:
35
+ @typing.overload
36
+ def __call__(self, attributes: Array_1[Attribute]) -> bool:...
37
+ @typing.overload
38
+ def __call__(self, attribute: Attribute) -> bool:...
39
+
40
+
41
+
42
+ class BackgroundWorker(Component):
43
+ def __init__(self) -> None: ...
44
+ @property
45
+ def CancellationPending(self) -> bool: ...
46
+ @property
47
+ def Container(self) -> IContainer: ...
48
+ @property
49
+ def IsBusy(self) -> bool: ...
50
+ @property
51
+ def Site(self) -> ISite: ...
52
+ @Site.setter
53
+ def Site(self, value: ISite) -> ISite: ...
54
+ @property
55
+ def WorkerReportsProgress(self) -> bool: ...
56
+ @WorkerReportsProgress.setter
57
+ def WorkerReportsProgress(self, value: bool) -> bool: ...
58
+ @property
59
+ def WorkerSupportsCancellation(self) -> bool: ...
60
+ @WorkerSupportsCancellation.setter
61
+ def WorkerSupportsCancellation(self, value: bool) -> bool: ...
62
+ def CancelAsync(self) -> None: ...
63
+ # Skipped ReportProgress due to it being static, abstract and generic.
64
+
65
+ ReportProgress : ReportProgress_MethodGroup
66
+ class ReportProgress_MethodGroup:
67
+ @typing.overload
68
+ def __call__(self, percentProgress: int) -> None:...
69
+ @typing.overload
70
+ def __call__(self, percentProgress: int, userState: typing.Any) -> None:...
71
+
72
+ # Skipped RunWorkerAsync due to it being static, abstract and generic.
73
+
74
+ RunWorkerAsync : RunWorkerAsync_MethodGroup
75
+ class RunWorkerAsync_MethodGroup:
76
+ @typing.overload
77
+ def __call__(self) -> None:...
78
+ @typing.overload
79
+ def __call__(self, argument: typing.Any) -> None:...
80
+
81
+
82
+
83
+ class CancelEventArgs(EventArgs):
84
+ @typing.overload
85
+ def __init__(self) -> None: ...
86
+ @typing.overload
87
+ def __init__(self, cancel: bool) -> None: ...
88
+ @property
89
+ def Cancel(self) -> bool: ...
90
+ @Cancel.setter
91
+ def Cancel(self, value: bool) -> bool: ...
92
+
93
+
94
+ class Component(MarshalByRefObject, IComponent):
95
+ def __init__(self) -> None: ...
96
+ @property
97
+ def Container(self) -> IContainer: ...
98
+ @property
99
+ def Site(self) -> ISite: ...
100
+ @Site.setter
101
+ def Site(self, value: ISite) -> ISite: ...
102
+ def Dispose(self) -> None: ...
103
+ def ToString(self) -> str: ...
104
+
105
+
106
+ class ComponentCollection(ReadOnlyCollectionBase):
107
+ def __init__(self, components: Array_1[IComponent]) -> None: ...
108
+ @property
109
+ def Count(self) -> int: ...
110
+ @property
111
+ def Item(self) -> IComponent: ...
112
+ @property
113
+ def Item(self) -> IComponent: ...
114
+ def CopyTo(self, array: Array_1[IComponent], index: int) -> None: ...
115
+
116
+
117
+ class DefaultValueAttribute(Attribute):
118
+ # Constructor .ctor(value : Int16) was skipped since it collides with above method
119
+ # Constructor .ctor(value : Int32) was skipped since it collides with above method
120
+ # Constructor .ctor(value : Int64) was skipped since it collides with above method
121
+ # Constructor .ctor(value : Single) was skipped since it collides with above method
122
+ # Constructor .ctor(value : Double) was skipped since it collides with above method
123
+ # Constructor .ctor(value : Boolean) was skipped since it collides with above method
124
+ # Constructor .ctor(value : String) was skipped since it collides with above method
125
+ # Constructor .ctor(value : SByte) was skipped since it collides with above method
126
+ # Constructor .ctor(value : UInt16) was skipped since it collides with above method
127
+ # Constructor .ctor(value : UInt32) was skipped since it collides with above method
128
+ # Constructor .ctor(value : UInt64) was skipped since it collides with above method
129
+ @typing.overload
130
+ def __init__(self, type: typing.Type[typing.Any], value: str) -> None: ...
131
+ @typing.overload
132
+ def __init__(self, value: str) -> None: ...
133
+ @typing.overload
134
+ def __init__(self, value: int) -> None: ...
135
+ @typing.overload
136
+ def __init__(self, value: typing.Any) -> None: ...
137
+ @property
138
+ def TypeId(self) -> typing.Any: ...
139
+ @property
140
+ def Value(self) -> typing.Any: ...
141
+ def Equals(self, obj: typing.Any) -> bool: ...
142
+ def GetHashCode(self) -> int: ...
143
+
144
+
145
+ class DesignerSerializationVisibility(typing.SupportsInt):
146
+ @typing.overload
147
+ def __init__(self, value : int) -> None: ...
148
+ @typing.overload
149
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
150
+ def __int__(self) -> int: ...
151
+
152
+ # Values:
153
+ Hidden : DesignerSerializationVisibility # 0
154
+ Visible : DesignerSerializationVisibility # 1
155
+ Content : DesignerSerializationVisibility # 2
156
+
157
+
158
+ class DoWorkEventArgs(CancelEventArgs):
159
+ def __init__(self, argument: typing.Any) -> None: ...
160
+ @property
161
+ def Argument(self) -> typing.Any: ...
162
+ @property
163
+ def Cancel(self) -> bool: ...
164
+ @Cancel.setter
165
+ def Cancel(self, value: bool) -> bool: ...
166
+ @property
167
+ def Result(self) -> typing.Any: ...
168
+ @Result.setter
169
+ def Result(self, value: typing.Any) -> typing.Any: ...
170
+
171
+
172
+ class EditorBrowsableAttribute(Attribute):
173
+ @typing.overload
174
+ def __init__(self) -> None: ...
175
+ @typing.overload
176
+ def __init__(self, state: EditorBrowsableState) -> None: ...
177
+ @property
178
+ def State(self) -> EditorBrowsableState: ...
179
+ @property
180
+ def TypeId(self) -> typing.Any: ...
181
+ def Equals(self, obj: typing.Any) -> bool: ...
182
+ def GetHashCode(self) -> int: ...
183
+
184
+
185
+ class EditorBrowsableState(typing.SupportsInt):
186
+ @typing.overload
187
+ def __init__(self, value : int) -> None: ...
188
+ @typing.overload
189
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
190
+ def __int__(self) -> int: ...
191
+
192
+ # Values:
193
+ Always : EditorBrowsableState # 0
194
+ Never : EditorBrowsableState # 1
195
+ Advanced : EditorBrowsableState # 2
196
+
197
+
198
+ class IComponent(IDisposable, typing.Protocol):
199
+ @property
200
+ def Site(self) -> ISite: ...
201
+ @Site.setter
202
+ def Site(self, value: ISite) -> ISite: ...
203
+
204
+
205
+ class IContainer(IDisposable, typing.Protocol):
206
+ @property
207
+ def Components(self) -> ComponentCollection: ...
208
+ @abc.abstractmethod
209
+ def Remove(self, component: IComponent) -> None: ...
210
+ # Skipped Add due to it being static, abstract and generic.
211
+
212
+ Add : Add_MethodGroup
213
+ class Add_MethodGroup:
214
+ @typing.overload
215
+ def __call__(self, component: IComponent) -> None:...
216
+ @typing.overload
217
+ def __call__(self, component: IComponent, name: str) -> None:...
218
+
219
+
220
+
221
+ class INotifyPropertyChanged(typing.Protocol):
222
+ pass
223
+
224
+
225
+ class ISite(IServiceProvider, typing.Protocol):
226
+ @property
227
+ def Component(self) -> IComponent: ...
228
+ @property
229
+ def Container(self) -> IContainer: ...
230
+ @property
231
+ def DesignMode(self) -> bool: ...
232
+ @property
233
+ def Name(self) -> str: ...
234
+ @Name.setter
235
+ def Name(self, value: str) -> str: ...
236
+
237
+
238
+ class ISynchronizeInvoke(typing.Protocol):
239
+ @property
240
+ def InvokeRequired(self) -> bool: ...
241
+ @abc.abstractmethod
242
+ def BeginInvoke(self, method: Delegate, args: Array_1[typing.Any]) -> IAsyncResult: ...
243
+ @abc.abstractmethod
244
+ def EndInvoke(self, result: IAsyncResult) -> typing.Any: ...
245
+ @abc.abstractmethod
246
+ def Invoke(self, method: Delegate, args: Array_1[typing.Any]) -> typing.Any: ...
247
+
248
+
249
+ class ITypeDescriptorContext(IServiceProvider, typing.Protocol):
250
+ @property
251
+ def Container(self) -> IContainer: ...
252
+ @property
253
+ def Instance(self) -> typing.Any: ...
254
+ @property
255
+ def PropertyDescriptor(self) -> PropertyDescriptor: ...
256
+ @abc.abstractmethod
257
+ def OnComponentChanged(self) -> None: ...
258
+ @abc.abstractmethod
259
+ def OnComponentChanging(self) -> bool: ...
260
+
261
+
262
+ class MemberDescriptor(abc.ABC):
263
+ @property
264
+ def Attributes(self) -> AttributeCollection: ...
265
+ @property
266
+ def Category(self) -> str: ...
267
+ @property
268
+ def Description(self) -> str: ...
269
+ @property
270
+ def DesignTimeOnly(self) -> bool: ...
271
+ @property
272
+ def DisplayName(self) -> str: ...
273
+ @property
274
+ def IsBrowsable(self) -> bool: ...
275
+ @property
276
+ def Name(self) -> str: ...
277
+ def Equals(self, obj: typing.Any) -> bool: ...
278
+ def GetHashCode(self) -> int: ...
279
+
280
+
281
+ class PropertyDescriptor(MemberDescriptor):
282
+ @property
283
+ def Attributes(self) -> AttributeCollection: ...
284
+ @property
285
+ def Category(self) -> str: ...
286
+ @property
287
+ def ComponentType(self) -> typing.Type[typing.Any]: ...
288
+ @property
289
+ def Converter(self) -> TypeConverter: ...
290
+ @property
291
+ def Description(self) -> str: ...
292
+ @property
293
+ def DesignTimeOnly(self) -> bool: ...
294
+ @property
295
+ def DisplayName(self) -> str: ...
296
+ @property
297
+ def IsBrowsable(self) -> bool: ...
298
+ @property
299
+ def IsLocalizable(self) -> bool: ...
300
+ @property
301
+ def IsReadOnly(self) -> bool: ...
302
+ @property
303
+ def Name(self) -> str: ...
304
+ @property
305
+ def PropertyType(self) -> typing.Type[typing.Any]: ...
306
+ @property
307
+ def SerializationVisibility(self) -> DesignerSerializationVisibility: ...
308
+ @property
309
+ def SupportsChangeEvents(self) -> bool: ...
310
+ def AddValueChanged(self, component: typing.Any, handler: EventHandler) -> None: ...
311
+ @abc.abstractmethod
312
+ def CanResetValue(self, component: typing.Any) -> bool: ...
313
+ def Equals(self, obj: typing.Any) -> bool: ...
314
+ def GetEditor(self, editorBaseType: typing.Type[typing.Any]) -> typing.Any: ...
315
+ def GetHashCode(self) -> int: ...
316
+ @abc.abstractmethod
317
+ def GetValue(self, component: typing.Any) -> typing.Any: ...
318
+ def RemoveValueChanged(self, component: typing.Any, handler: EventHandler) -> None: ...
319
+ @abc.abstractmethod
320
+ def ResetValue(self, component: typing.Any) -> None: ...
321
+ @abc.abstractmethod
322
+ def SetValue(self, component: typing.Any, value: typing.Any) -> None: ...
323
+ @abc.abstractmethod
324
+ def ShouldSerializeValue(self, component: typing.Any) -> bool: ...
325
+ # Skipped GetChildProperties due to it being static, abstract and generic.
326
+
327
+ GetChildProperties : GetChildProperties_MethodGroup
328
+ class GetChildProperties_MethodGroup:
329
+ @typing.overload
330
+ def __call__(self) -> PropertyDescriptorCollection:...
331
+ @typing.overload
332
+ def __call__(self, filter: Array_1[Attribute]) -> PropertyDescriptorCollection:...
333
+ @typing.overload
334
+ def __call__(self, instance: typing.Any) -> PropertyDescriptorCollection:...
335
+ @typing.overload
336
+ def __call__(self, instance: typing.Any, filter: Array_1[Attribute]) -> PropertyDescriptorCollection:...
337
+
338
+
339
+
340
+ class PropertyDescriptorCollection(IDictionary, IList):
341
+ @typing.overload
342
+ def __init__(self, properties: Array_1[PropertyDescriptor]) -> None: ...
343
+ @typing.overload
344
+ def __init__(self, properties: Array_1[PropertyDescriptor], readOnly: bool) -> None: ...
345
+ Empty : PropertyDescriptorCollection
346
+ @property
347
+ def Count(self) -> int: ...
348
+ @Count.setter
349
+ def Count(self, value: int) -> int: ...
350
+ @property
351
+ def Item(self) -> PropertyDescriptor: ...
352
+ @property
353
+ def Item(self) -> PropertyDescriptor: ...
354
+ def Add(self, value: PropertyDescriptor) -> int: ...
355
+ def Clear(self) -> None: ...
356
+ def Contains(self, value: PropertyDescriptor) -> bool: ...
357
+ def CopyTo(self, array: Array, index: int) -> None: ...
358
+ def Find(self, name: str, ignoreCase: bool) -> PropertyDescriptor: ...
359
+ def GetEnumerator(self) -> IEnumerator: ...
360
+ def IndexOf(self, value: PropertyDescriptor) -> int: ...
361
+ def Insert(self, index: int, value: PropertyDescriptor) -> None: ...
362
+ def Remove(self, value: PropertyDescriptor) -> None: ...
363
+ def RemoveAt(self, index: int) -> None: ...
364
+ # Skipped Sort due to it being static, abstract and generic.
365
+
366
+ Sort : Sort_MethodGroup
367
+ class Sort_MethodGroup:
368
+ @typing.overload
369
+ def __call__(self) -> PropertyDescriptorCollection:...
370
+ @typing.overload
371
+ def __call__(self, names: Array_1[str]) -> PropertyDescriptorCollection:...
372
+ @typing.overload
373
+ def __call__(self, comparer: IComparer) -> PropertyDescriptorCollection:...
374
+ @typing.overload
375
+ def __call__(self, names: Array_1[str], comparer: IComparer) -> PropertyDescriptorCollection:...
376
+
377
+
378
+
379
+ class TypeConverter:
380
+ def __init__(self) -> None: ...
381
+ # Skipped CanConvertFrom due to it being static, abstract and generic.
382
+
383
+ CanConvertFrom : CanConvertFrom_MethodGroup
384
+ class CanConvertFrom_MethodGroup:
385
+ @typing.overload
386
+ def __call__(self, sourceType: typing.Type[typing.Any]) -> bool:...
387
+ @typing.overload
388
+ def __call__(self, context: ITypeDescriptorContext, sourceType: typing.Type[typing.Any]) -> bool:...
389
+
390
+ # Skipped CanConvertTo due to it being static, abstract and generic.
391
+
392
+ CanConvertTo : CanConvertTo_MethodGroup
393
+ class CanConvertTo_MethodGroup:
394
+ @typing.overload
395
+ def __call__(self, destinationType: typing.Type[typing.Any]) -> bool:...
396
+ @typing.overload
397
+ def __call__(self, context: ITypeDescriptorContext, destinationType: typing.Type[typing.Any]) -> bool:...
398
+
399
+ # Skipped ConvertFrom due to it being static, abstract and generic.
400
+
401
+ ConvertFrom : ConvertFrom_MethodGroup
402
+ class ConvertFrom_MethodGroup:
403
+ @typing.overload
404
+ def __call__(self, value: typing.Any) -> typing.Any:...
405
+ @typing.overload
406
+ def __call__(self, context: ITypeDescriptorContext, culture: CultureInfo, value: typing.Any) -> typing.Any:...
407
+
408
+ # Skipped ConvertFromInvariantString due to it being static, abstract and generic.
409
+
410
+ ConvertFromInvariantString : ConvertFromInvariantString_MethodGroup
411
+ class ConvertFromInvariantString_MethodGroup:
412
+ @typing.overload
413
+ def __call__(self, text: str) -> typing.Any:...
414
+ @typing.overload
415
+ def __call__(self, context: ITypeDescriptorContext, text: str) -> typing.Any:...
416
+
417
+ # Skipped ConvertFromString due to it being static, abstract and generic.
418
+
419
+ ConvertFromString : ConvertFromString_MethodGroup
420
+ class ConvertFromString_MethodGroup:
421
+ @typing.overload
422
+ def __call__(self, text: str) -> typing.Any:...
423
+ @typing.overload
424
+ def __call__(self, context: ITypeDescriptorContext, text: str) -> typing.Any:...
425
+ @typing.overload
426
+ def __call__(self, context: ITypeDescriptorContext, culture: CultureInfo, text: str) -> typing.Any:...
427
+
428
+ # Skipped ConvertTo due to it being static, abstract and generic.
429
+
430
+ ConvertTo : ConvertTo_MethodGroup
431
+ class ConvertTo_MethodGroup:
432
+ @typing.overload
433
+ def __call__(self, value: typing.Any, destinationType: typing.Type[typing.Any]) -> typing.Any:...
434
+ @typing.overload
435
+ def __call__(self, context: ITypeDescriptorContext, culture: CultureInfo, value: typing.Any, destinationType: typing.Type[typing.Any]) -> typing.Any:...
436
+
437
+ # Skipped ConvertToInvariantString due to it being static, abstract and generic.
438
+
439
+ ConvertToInvariantString : ConvertToInvariantString_MethodGroup
440
+ class ConvertToInvariantString_MethodGroup:
441
+ @typing.overload
442
+ def __call__(self, value: typing.Any) -> str:...
443
+ @typing.overload
444
+ def __call__(self, context: ITypeDescriptorContext, value: typing.Any) -> str:...
445
+
446
+ # Skipped ConvertToString due to it being static, abstract and generic.
447
+
448
+ ConvertToString : ConvertToString_MethodGroup
449
+ class ConvertToString_MethodGroup:
450
+ @typing.overload
451
+ def __call__(self, value: typing.Any) -> str:...
452
+ @typing.overload
453
+ def __call__(self, context: ITypeDescriptorContext, value: typing.Any) -> str:...
454
+ @typing.overload
455
+ def __call__(self, context: ITypeDescriptorContext, culture: CultureInfo, value: typing.Any) -> str:...
456
+
457
+ # Skipped CreateInstance due to it being static, abstract and generic.
458
+
459
+ CreateInstance : CreateInstance_MethodGroup
460
+ class CreateInstance_MethodGroup:
461
+ @typing.overload
462
+ def __call__(self, propertyValues: IDictionary) -> typing.Any:...
463
+ @typing.overload
464
+ def __call__(self, context: ITypeDescriptorContext, propertyValues: IDictionary) -> typing.Any:...
465
+
466
+ # Skipped GetCreateInstanceSupported due to it being static, abstract and generic.
467
+
468
+ GetCreateInstanceSupported : GetCreateInstanceSupported_MethodGroup
469
+ class GetCreateInstanceSupported_MethodGroup:
470
+ @typing.overload
471
+ def __call__(self) -> bool:...
472
+ @typing.overload
473
+ def __call__(self, context: ITypeDescriptorContext) -> bool:...
474
+
475
+ # Skipped GetProperties due to it being static, abstract and generic.
476
+
477
+ GetProperties : GetProperties_MethodGroup
478
+ class GetProperties_MethodGroup:
479
+ @typing.overload
480
+ def __call__(self, value: typing.Any) -> PropertyDescriptorCollection:...
481
+ @typing.overload
482
+ def __call__(self, context: ITypeDescriptorContext, value: typing.Any) -> PropertyDescriptorCollection:...
483
+ @typing.overload
484
+ def __call__(self, context: ITypeDescriptorContext, value: typing.Any, attributes: Array_1[Attribute]) -> PropertyDescriptorCollection:...
485
+
486
+ # Skipped GetPropertiesSupported due to it being static, abstract and generic.
487
+
488
+ GetPropertiesSupported : GetPropertiesSupported_MethodGroup
489
+ class GetPropertiesSupported_MethodGroup:
490
+ @typing.overload
491
+ def __call__(self) -> bool:...
492
+ @typing.overload
493
+ def __call__(self, context: ITypeDescriptorContext) -> bool:...
494
+
495
+ # Skipped GetStandardValues due to it being static, abstract and generic.
496
+
497
+ GetStandardValues : GetStandardValues_MethodGroup
498
+ class GetStandardValues_MethodGroup:
499
+ @typing.overload
500
+ def __call__(self) -> ICollection:...
501
+ @typing.overload
502
+ def __call__(self, context: ITypeDescriptorContext) -> TypeConverter.StandardValuesCollection:...
503
+
504
+ # Skipped GetStandardValuesExclusive due to it being static, abstract and generic.
505
+
506
+ GetStandardValuesExclusive : GetStandardValuesExclusive_MethodGroup
507
+ class GetStandardValuesExclusive_MethodGroup:
508
+ @typing.overload
509
+ def __call__(self) -> bool:...
510
+ @typing.overload
511
+ def __call__(self, context: ITypeDescriptorContext) -> bool:...
512
+
513
+ # Skipped GetStandardValuesSupported due to it being static, abstract and generic.
514
+
515
+ GetStandardValuesSupported : GetStandardValuesSupported_MethodGroup
516
+ class GetStandardValuesSupported_MethodGroup:
517
+ @typing.overload
518
+ def __call__(self) -> bool:...
519
+ @typing.overload
520
+ def __call__(self, context: ITypeDescriptorContext) -> bool:...
521
+
522
+ # Skipped IsValid due to it being static, abstract and generic.
523
+
524
+ IsValid : IsValid_MethodGroup
525
+ class IsValid_MethodGroup:
526
+ @typing.overload
527
+ def __call__(self, value: typing.Any) -> bool:...
528
+ @typing.overload
529
+ def __call__(self, context: ITypeDescriptorContext, value: typing.Any) -> bool:...
530
+
531
+
532
+ class StandardValuesCollection(ICollection):
533
+ def __init__(self, values: ICollection) -> None: ...
534
+ @property
535
+ def Count(self) -> int: ...
536
+ @property
537
+ def Item(self) -> typing.Any: ...
538
+ def CopyTo(self, array: Array, index: int) -> None: ...
539
+ def GetEnumerator(self) -> IEnumerator: ...
540
+
541
+
542
+
543
+ class Win32Exception(ExternalException):
544
+ @typing.overload
545
+ def __init__(self) -> None: ...
546
+ @typing.overload
547
+ def __init__(self, error: int) -> None: ...
548
+ @typing.overload
549
+ def __init__(self, error: int, message: str) -> None: ...
550
+ @typing.overload
551
+ def __init__(self, message: str) -> None: ...
552
+ @typing.overload
553
+ def __init__(self, message: str, innerException: Exception) -> None: ...
554
+ @property
555
+ def Data(self) -> IDictionary: ...
556
+ @property
557
+ def ErrorCode(self) -> int: ...
558
+ @property
559
+ def HelpLink(self) -> str: ...
560
+ @HelpLink.setter
561
+ def HelpLink(self, value: str) -> str: ...
562
+ @property
563
+ def HResult(self) -> int: ...
564
+ @HResult.setter
565
+ def HResult(self, value: int) -> int: ...
566
+ @property
567
+ def InnerException(self) -> Exception: ...
568
+ @property
569
+ def Message(self) -> str: ...
570
+ @property
571
+ def NativeErrorCode(self) -> int: ...
572
+ @property
573
+ def Source(self) -> str: ...
574
+ @Source.setter
575
+ def Source(self, value: str) -> str: ...
576
+ @property
577
+ def StackTrace(self) -> str: ...
578
+ @property
579
+ def TargetSite(self) -> MethodBase: ...
580
+ def GetObjectData(self, info: SerializationInfo, context: StreamingContext) -> None: ...
581
+ def ToString(self) -> str: ...
582
+
@@ -0,0 +1,30 @@
1
+ import typing
2
+
3
+ class AssemblyHashAlgorithm(typing.SupportsInt):
4
+ @typing.overload
5
+ def __init__(self, value : int) -> None: ...
6
+ @typing.overload
7
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
8
+ def __int__(self) -> int: ...
9
+
10
+ # Values:
11
+ None_ : AssemblyHashAlgorithm # 0
12
+ MD5 : AssemblyHashAlgorithm # 32771
13
+ SHA1 : AssemblyHashAlgorithm # 32772
14
+ SHA256 : AssemblyHashAlgorithm # 32780
15
+ SHA384 : AssemblyHashAlgorithm # 32781
16
+ SHA512 : AssemblyHashAlgorithm # 32782
17
+
18
+
19
+ class AssemblyVersionCompatibility(typing.SupportsInt):
20
+ @typing.overload
21
+ def __init__(self, value : int) -> None: ...
22
+ @typing.overload
23
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
24
+ def __int__(self) -> int: ...
25
+
26
+ # Values:
27
+ SameMachine : AssemblyVersionCompatibility # 1
28
+ SameProcess : AssemblyVersionCompatibility # 2
29
+ SameDomain : AssemblyVersionCompatibility # 3
30
+