win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Foundation/__init__.py +7 -0
- win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
- win32more/Microsoft/Graphics/Display/__init__.py +174 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
- win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
- win32more/Microsoft/UI/Composition/__init__.py +4793 -0
- win32more/Microsoft/UI/Content/__init__.py +918 -0
- win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
- win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
- win32more/Microsoft/UI/Input/__init__.py +1927 -0
- win32more/Microsoft/UI/System/__init__.py +46 -0
- win32more/Microsoft/UI/Text/__init__.py +1090 -0
- win32more/Microsoft/UI/Windowing/__init__.py +877 -0
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
- win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
- win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
- win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
- win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
- win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
- win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
- win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
- win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
- win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
- win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
- win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
- win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
- win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
- win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
- win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
- win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
- win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
- win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
- win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
- win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
- win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
- win32more/Microsoft/UI/__init__.py +912 -0
- win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
- win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
- win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
- win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
- win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
- win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
- win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
- win32more/Microsoft/Windows/System/__init__.py +78 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
- win32more/appsdk/versioninfo.py +3 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
|
@@ -0,0 +1,912 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI
|
|
4
|
+
import win32more.Windows.Foundation
|
|
5
|
+
import win32more.Windows.UI
|
|
6
|
+
class ClosableNotifierHandler(MulticastDelegate):
|
|
7
|
+
extends: IUnknown
|
|
8
|
+
_iid_ = Guid('{478cec68-ea8e-52fc-87e2-c819de000f92}')
|
|
9
|
+
@winrt_commethod(3)
|
|
10
|
+
def Invoke(self) -> Void: ...
|
|
11
|
+
class ColorHelper(ComPtr):
|
|
12
|
+
extends: IInspectable
|
|
13
|
+
default_interface: win32more.Microsoft.UI.IColorHelper
|
|
14
|
+
_classid_ = 'Microsoft.UI.ColorHelper'
|
|
15
|
+
@winrt_classmethod
|
|
16
|
+
def FromArgb(cls: win32more.Microsoft.UI.IColorHelperStatics, a: Byte, r: Byte, g: Byte, b: Byte) -> win32more.Windows.UI.Color: ...
|
|
17
|
+
class _Colors_Meta_(ComPtr.__class__):
|
|
18
|
+
pass
|
|
19
|
+
class Colors(ComPtr, metaclass=_Colors_Meta_):
|
|
20
|
+
extends: IInspectable
|
|
21
|
+
default_interface: win32more.Microsoft.UI.IColors
|
|
22
|
+
_classid_ = 'Microsoft.UI.Colors'
|
|
23
|
+
@winrt_classmethod
|
|
24
|
+
def get_AliceBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
25
|
+
@winrt_classmethod
|
|
26
|
+
def get_AntiqueWhite(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
27
|
+
@winrt_classmethod
|
|
28
|
+
def get_Aqua(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
29
|
+
@winrt_classmethod
|
|
30
|
+
def get_Aquamarine(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
31
|
+
@winrt_classmethod
|
|
32
|
+
def get_Azure(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
33
|
+
@winrt_classmethod
|
|
34
|
+
def get_Beige(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
35
|
+
@winrt_classmethod
|
|
36
|
+
def get_Bisque(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
37
|
+
@winrt_classmethod
|
|
38
|
+
def get_Black(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
39
|
+
@winrt_classmethod
|
|
40
|
+
def get_BlanchedAlmond(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
41
|
+
@winrt_classmethod
|
|
42
|
+
def get_Blue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
43
|
+
@winrt_classmethod
|
|
44
|
+
def get_BlueViolet(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
45
|
+
@winrt_classmethod
|
|
46
|
+
def get_Brown(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
47
|
+
@winrt_classmethod
|
|
48
|
+
def get_BurlyWood(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
49
|
+
@winrt_classmethod
|
|
50
|
+
def get_CadetBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
51
|
+
@winrt_classmethod
|
|
52
|
+
def get_Chartreuse(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
53
|
+
@winrt_classmethod
|
|
54
|
+
def get_Chocolate(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
55
|
+
@winrt_classmethod
|
|
56
|
+
def get_Coral(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
57
|
+
@winrt_classmethod
|
|
58
|
+
def get_CornflowerBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
59
|
+
@winrt_classmethod
|
|
60
|
+
def get_Cornsilk(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
61
|
+
@winrt_classmethod
|
|
62
|
+
def get_Crimson(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
63
|
+
@winrt_classmethod
|
|
64
|
+
def get_Cyan(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
65
|
+
@winrt_classmethod
|
|
66
|
+
def get_DarkBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
67
|
+
@winrt_classmethod
|
|
68
|
+
def get_DarkCyan(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
69
|
+
@winrt_classmethod
|
|
70
|
+
def get_DarkGoldenrod(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
71
|
+
@winrt_classmethod
|
|
72
|
+
def get_DarkGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
73
|
+
@winrt_classmethod
|
|
74
|
+
def get_DarkGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
75
|
+
@winrt_classmethod
|
|
76
|
+
def get_DarkKhaki(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
77
|
+
@winrt_classmethod
|
|
78
|
+
def get_DarkMagenta(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
79
|
+
@winrt_classmethod
|
|
80
|
+
def get_DarkOliveGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
81
|
+
@winrt_classmethod
|
|
82
|
+
def get_DarkOrange(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
83
|
+
@winrt_classmethod
|
|
84
|
+
def get_DarkOrchid(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
85
|
+
@winrt_classmethod
|
|
86
|
+
def get_DarkRed(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
87
|
+
@winrt_classmethod
|
|
88
|
+
def get_DarkSalmon(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
89
|
+
@winrt_classmethod
|
|
90
|
+
def get_DarkSeaGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
91
|
+
@winrt_classmethod
|
|
92
|
+
def get_DarkSlateBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
93
|
+
@winrt_classmethod
|
|
94
|
+
def get_DarkSlateGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
95
|
+
@winrt_classmethod
|
|
96
|
+
def get_DarkTurquoise(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
97
|
+
@winrt_classmethod
|
|
98
|
+
def get_DarkViolet(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
99
|
+
@winrt_classmethod
|
|
100
|
+
def get_DeepPink(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
101
|
+
@winrt_classmethod
|
|
102
|
+
def get_DeepSkyBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
103
|
+
@winrt_classmethod
|
|
104
|
+
def get_DimGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
105
|
+
@winrt_classmethod
|
|
106
|
+
def get_DodgerBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
107
|
+
@winrt_classmethod
|
|
108
|
+
def get_Firebrick(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
109
|
+
@winrt_classmethod
|
|
110
|
+
def get_FloralWhite(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
111
|
+
@winrt_classmethod
|
|
112
|
+
def get_ForestGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
113
|
+
@winrt_classmethod
|
|
114
|
+
def get_Fuchsia(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
115
|
+
@winrt_classmethod
|
|
116
|
+
def get_Gainsboro(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
117
|
+
@winrt_classmethod
|
|
118
|
+
def get_GhostWhite(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
119
|
+
@winrt_classmethod
|
|
120
|
+
def get_Gold(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
121
|
+
@winrt_classmethod
|
|
122
|
+
def get_Goldenrod(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
123
|
+
@winrt_classmethod
|
|
124
|
+
def get_Gray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
125
|
+
@winrt_classmethod
|
|
126
|
+
def get_Green(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
127
|
+
@winrt_classmethod
|
|
128
|
+
def get_GreenYellow(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
129
|
+
@winrt_classmethod
|
|
130
|
+
def get_Honeydew(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
131
|
+
@winrt_classmethod
|
|
132
|
+
def get_HotPink(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
133
|
+
@winrt_classmethod
|
|
134
|
+
def get_IndianRed(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
135
|
+
@winrt_classmethod
|
|
136
|
+
def get_Indigo(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
137
|
+
@winrt_classmethod
|
|
138
|
+
def get_Ivory(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
139
|
+
@winrt_classmethod
|
|
140
|
+
def get_Khaki(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
141
|
+
@winrt_classmethod
|
|
142
|
+
def get_Lavender(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
143
|
+
@winrt_classmethod
|
|
144
|
+
def get_LavenderBlush(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
145
|
+
@winrt_classmethod
|
|
146
|
+
def get_LawnGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
147
|
+
@winrt_classmethod
|
|
148
|
+
def get_LemonChiffon(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
149
|
+
@winrt_classmethod
|
|
150
|
+
def get_LightBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
151
|
+
@winrt_classmethod
|
|
152
|
+
def get_LightCoral(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
153
|
+
@winrt_classmethod
|
|
154
|
+
def get_LightCyan(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
155
|
+
@winrt_classmethod
|
|
156
|
+
def get_LightGoldenrodYellow(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
157
|
+
@winrt_classmethod
|
|
158
|
+
def get_LightGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
159
|
+
@winrt_classmethod
|
|
160
|
+
def get_LightGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
161
|
+
@winrt_classmethod
|
|
162
|
+
def get_LightPink(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
163
|
+
@winrt_classmethod
|
|
164
|
+
def get_LightSalmon(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
165
|
+
@winrt_classmethod
|
|
166
|
+
def get_LightSeaGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
167
|
+
@winrt_classmethod
|
|
168
|
+
def get_LightSkyBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
169
|
+
@winrt_classmethod
|
|
170
|
+
def get_LightSlateGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
171
|
+
@winrt_classmethod
|
|
172
|
+
def get_LightSteelBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
173
|
+
@winrt_classmethod
|
|
174
|
+
def get_LightYellow(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
175
|
+
@winrt_classmethod
|
|
176
|
+
def get_Lime(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
177
|
+
@winrt_classmethod
|
|
178
|
+
def get_LimeGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
179
|
+
@winrt_classmethod
|
|
180
|
+
def get_Linen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
181
|
+
@winrt_classmethod
|
|
182
|
+
def get_Magenta(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
183
|
+
@winrt_classmethod
|
|
184
|
+
def get_Maroon(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
185
|
+
@winrt_classmethod
|
|
186
|
+
def get_MediumAquamarine(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
187
|
+
@winrt_classmethod
|
|
188
|
+
def get_MediumBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
189
|
+
@winrt_classmethod
|
|
190
|
+
def get_MediumOrchid(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
191
|
+
@winrt_classmethod
|
|
192
|
+
def get_MediumPurple(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
193
|
+
@winrt_classmethod
|
|
194
|
+
def get_MediumSeaGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
195
|
+
@winrt_classmethod
|
|
196
|
+
def get_MediumSlateBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
197
|
+
@winrt_classmethod
|
|
198
|
+
def get_MediumSpringGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
199
|
+
@winrt_classmethod
|
|
200
|
+
def get_MediumTurquoise(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
201
|
+
@winrt_classmethod
|
|
202
|
+
def get_MediumVioletRed(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
203
|
+
@winrt_classmethod
|
|
204
|
+
def get_MidnightBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
205
|
+
@winrt_classmethod
|
|
206
|
+
def get_MintCream(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
207
|
+
@winrt_classmethod
|
|
208
|
+
def get_MistyRose(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
209
|
+
@winrt_classmethod
|
|
210
|
+
def get_Moccasin(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
211
|
+
@winrt_classmethod
|
|
212
|
+
def get_NavajoWhite(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
213
|
+
@winrt_classmethod
|
|
214
|
+
def get_Navy(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
215
|
+
@winrt_classmethod
|
|
216
|
+
def get_OldLace(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
217
|
+
@winrt_classmethod
|
|
218
|
+
def get_Olive(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
219
|
+
@winrt_classmethod
|
|
220
|
+
def get_OliveDrab(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
221
|
+
@winrt_classmethod
|
|
222
|
+
def get_Orange(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
223
|
+
@winrt_classmethod
|
|
224
|
+
def get_OrangeRed(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
225
|
+
@winrt_classmethod
|
|
226
|
+
def get_Orchid(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
227
|
+
@winrt_classmethod
|
|
228
|
+
def get_PaleGoldenrod(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
229
|
+
@winrt_classmethod
|
|
230
|
+
def get_PaleGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
231
|
+
@winrt_classmethod
|
|
232
|
+
def get_PaleTurquoise(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
233
|
+
@winrt_classmethod
|
|
234
|
+
def get_PaleVioletRed(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
235
|
+
@winrt_classmethod
|
|
236
|
+
def get_PapayaWhip(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
237
|
+
@winrt_classmethod
|
|
238
|
+
def get_PeachPuff(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
239
|
+
@winrt_classmethod
|
|
240
|
+
def get_Peru(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
241
|
+
@winrt_classmethod
|
|
242
|
+
def get_Pink(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
243
|
+
@winrt_classmethod
|
|
244
|
+
def get_Plum(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
245
|
+
@winrt_classmethod
|
|
246
|
+
def get_PowderBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
247
|
+
@winrt_classmethod
|
|
248
|
+
def get_Purple(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
249
|
+
@winrt_classmethod
|
|
250
|
+
def get_Red(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
251
|
+
@winrt_classmethod
|
|
252
|
+
def get_RosyBrown(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
253
|
+
@winrt_classmethod
|
|
254
|
+
def get_RoyalBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
255
|
+
@winrt_classmethod
|
|
256
|
+
def get_SaddleBrown(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
257
|
+
@winrt_classmethod
|
|
258
|
+
def get_Salmon(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
259
|
+
@winrt_classmethod
|
|
260
|
+
def get_SandyBrown(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
261
|
+
@winrt_classmethod
|
|
262
|
+
def get_SeaGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
263
|
+
@winrt_classmethod
|
|
264
|
+
def get_SeaShell(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
265
|
+
@winrt_classmethod
|
|
266
|
+
def get_Sienna(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
267
|
+
@winrt_classmethod
|
|
268
|
+
def get_Silver(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
269
|
+
@winrt_classmethod
|
|
270
|
+
def get_SkyBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
271
|
+
@winrt_classmethod
|
|
272
|
+
def get_SlateBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
273
|
+
@winrt_classmethod
|
|
274
|
+
def get_SlateGray(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
275
|
+
@winrt_classmethod
|
|
276
|
+
def get_Snow(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
277
|
+
@winrt_classmethod
|
|
278
|
+
def get_SpringGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
279
|
+
@winrt_classmethod
|
|
280
|
+
def get_SteelBlue(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
281
|
+
@winrt_classmethod
|
|
282
|
+
def get_Tan(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
283
|
+
@winrt_classmethod
|
|
284
|
+
def get_Teal(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
285
|
+
@winrt_classmethod
|
|
286
|
+
def get_Thistle(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
287
|
+
@winrt_classmethod
|
|
288
|
+
def get_Tomato(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
289
|
+
@winrt_classmethod
|
|
290
|
+
def get_Transparent(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
291
|
+
@winrt_classmethod
|
|
292
|
+
def get_Turquoise(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
293
|
+
@winrt_classmethod
|
|
294
|
+
def get_Violet(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
295
|
+
@winrt_classmethod
|
|
296
|
+
def get_Wheat(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
297
|
+
@winrt_classmethod
|
|
298
|
+
def get_White(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
299
|
+
@winrt_classmethod
|
|
300
|
+
def get_WhiteSmoke(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
301
|
+
@winrt_classmethod
|
|
302
|
+
def get_Yellow(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
303
|
+
@winrt_classmethod
|
|
304
|
+
def get_YellowGreen(cls: win32more.Microsoft.UI.IColorsStatics) -> win32more.Windows.UI.Color: ...
|
|
305
|
+
_Colors_Meta_.AliceBlue = property(get_AliceBlue, None)
|
|
306
|
+
_Colors_Meta_.AntiqueWhite = property(get_AntiqueWhite, None)
|
|
307
|
+
_Colors_Meta_.Aqua = property(get_Aqua, None)
|
|
308
|
+
_Colors_Meta_.Aquamarine = property(get_Aquamarine, None)
|
|
309
|
+
_Colors_Meta_.Azure = property(get_Azure, None)
|
|
310
|
+
_Colors_Meta_.Beige = property(get_Beige, None)
|
|
311
|
+
_Colors_Meta_.Bisque = property(get_Bisque, None)
|
|
312
|
+
_Colors_Meta_.Black = property(get_Black, None)
|
|
313
|
+
_Colors_Meta_.BlanchedAlmond = property(get_BlanchedAlmond, None)
|
|
314
|
+
_Colors_Meta_.Blue = property(get_Blue, None)
|
|
315
|
+
_Colors_Meta_.BlueViolet = property(get_BlueViolet, None)
|
|
316
|
+
_Colors_Meta_.Brown = property(get_Brown, None)
|
|
317
|
+
_Colors_Meta_.BurlyWood = property(get_BurlyWood, None)
|
|
318
|
+
_Colors_Meta_.CadetBlue = property(get_CadetBlue, None)
|
|
319
|
+
_Colors_Meta_.Chartreuse = property(get_Chartreuse, None)
|
|
320
|
+
_Colors_Meta_.Chocolate = property(get_Chocolate, None)
|
|
321
|
+
_Colors_Meta_.Coral = property(get_Coral, None)
|
|
322
|
+
_Colors_Meta_.CornflowerBlue = property(get_CornflowerBlue, None)
|
|
323
|
+
_Colors_Meta_.Cornsilk = property(get_Cornsilk, None)
|
|
324
|
+
_Colors_Meta_.Crimson = property(get_Crimson, None)
|
|
325
|
+
_Colors_Meta_.Cyan = property(get_Cyan, None)
|
|
326
|
+
_Colors_Meta_.DarkBlue = property(get_DarkBlue, None)
|
|
327
|
+
_Colors_Meta_.DarkCyan = property(get_DarkCyan, None)
|
|
328
|
+
_Colors_Meta_.DarkGoldenrod = property(get_DarkGoldenrod, None)
|
|
329
|
+
_Colors_Meta_.DarkGray = property(get_DarkGray, None)
|
|
330
|
+
_Colors_Meta_.DarkGreen = property(get_DarkGreen, None)
|
|
331
|
+
_Colors_Meta_.DarkKhaki = property(get_DarkKhaki, None)
|
|
332
|
+
_Colors_Meta_.DarkMagenta = property(get_DarkMagenta, None)
|
|
333
|
+
_Colors_Meta_.DarkOliveGreen = property(get_DarkOliveGreen, None)
|
|
334
|
+
_Colors_Meta_.DarkOrange = property(get_DarkOrange, None)
|
|
335
|
+
_Colors_Meta_.DarkOrchid = property(get_DarkOrchid, None)
|
|
336
|
+
_Colors_Meta_.DarkRed = property(get_DarkRed, None)
|
|
337
|
+
_Colors_Meta_.DarkSalmon = property(get_DarkSalmon, None)
|
|
338
|
+
_Colors_Meta_.DarkSeaGreen = property(get_DarkSeaGreen, None)
|
|
339
|
+
_Colors_Meta_.DarkSlateBlue = property(get_DarkSlateBlue, None)
|
|
340
|
+
_Colors_Meta_.DarkSlateGray = property(get_DarkSlateGray, None)
|
|
341
|
+
_Colors_Meta_.DarkTurquoise = property(get_DarkTurquoise, None)
|
|
342
|
+
_Colors_Meta_.DarkViolet = property(get_DarkViolet, None)
|
|
343
|
+
_Colors_Meta_.DeepPink = property(get_DeepPink, None)
|
|
344
|
+
_Colors_Meta_.DeepSkyBlue = property(get_DeepSkyBlue, None)
|
|
345
|
+
_Colors_Meta_.DimGray = property(get_DimGray, None)
|
|
346
|
+
_Colors_Meta_.DodgerBlue = property(get_DodgerBlue, None)
|
|
347
|
+
_Colors_Meta_.Firebrick = property(get_Firebrick, None)
|
|
348
|
+
_Colors_Meta_.FloralWhite = property(get_FloralWhite, None)
|
|
349
|
+
_Colors_Meta_.ForestGreen = property(get_ForestGreen, None)
|
|
350
|
+
_Colors_Meta_.Fuchsia = property(get_Fuchsia, None)
|
|
351
|
+
_Colors_Meta_.Gainsboro = property(get_Gainsboro, None)
|
|
352
|
+
_Colors_Meta_.GhostWhite = property(get_GhostWhite, None)
|
|
353
|
+
_Colors_Meta_.Gold = property(get_Gold, None)
|
|
354
|
+
_Colors_Meta_.Goldenrod = property(get_Goldenrod, None)
|
|
355
|
+
_Colors_Meta_.Gray = property(get_Gray, None)
|
|
356
|
+
_Colors_Meta_.Green = property(get_Green, None)
|
|
357
|
+
_Colors_Meta_.GreenYellow = property(get_GreenYellow, None)
|
|
358
|
+
_Colors_Meta_.Honeydew = property(get_Honeydew, None)
|
|
359
|
+
_Colors_Meta_.HotPink = property(get_HotPink, None)
|
|
360
|
+
_Colors_Meta_.IndianRed = property(get_IndianRed, None)
|
|
361
|
+
_Colors_Meta_.Indigo = property(get_Indigo, None)
|
|
362
|
+
_Colors_Meta_.Ivory = property(get_Ivory, None)
|
|
363
|
+
_Colors_Meta_.Khaki = property(get_Khaki, None)
|
|
364
|
+
_Colors_Meta_.Lavender = property(get_Lavender, None)
|
|
365
|
+
_Colors_Meta_.LavenderBlush = property(get_LavenderBlush, None)
|
|
366
|
+
_Colors_Meta_.LawnGreen = property(get_LawnGreen, None)
|
|
367
|
+
_Colors_Meta_.LemonChiffon = property(get_LemonChiffon, None)
|
|
368
|
+
_Colors_Meta_.LightBlue = property(get_LightBlue, None)
|
|
369
|
+
_Colors_Meta_.LightCoral = property(get_LightCoral, None)
|
|
370
|
+
_Colors_Meta_.LightCyan = property(get_LightCyan, None)
|
|
371
|
+
_Colors_Meta_.LightGoldenrodYellow = property(get_LightGoldenrodYellow, None)
|
|
372
|
+
_Colors_Meta_.LightGray = property(get_LightGray, None)
|
|
373
|
+
_Colors_Meta_.LightGreen = property(get_LightGreen, None)
|
|
374
|
+
_Colors_Meta_.LightPink = property(get_LightPink, None)
|
|
375
|
+
_Colors_Meta_.LightSalmon = property(get_LightSalmon, None)
|
|
376
|
+
_Colors_Meta_.LightSeaGreen = property(get_LightSeaGreen, None)
|
|
377
|
+
_Colors_Meta_.LightSkyBlue = property(get_LightSkyBlue, None)
|
|
378
|
+
_Colors_Meta_.LightSlateGray = property(get_LightSlateGray, None)
|
|
379
|
+
_Colors_Meta_.LightSteelBlue = property(get_LightSteelBlue, None)
|
|
380
|
+
_Colors_Meta_.LightYellow = property(get_LightYellow, None)
|
|
381
|
+
_Colors_Meta_.Lime = property(get_Lime, None)
|
|
382
|
+
_Colors_Meta_.LimeGreen = property(get_LimeGreen, None)
|
|
383
|
+
_Colors_Meta_.Linen = property(get_Linen, None)
|
|
384
|
+
_Colors_Meta_.Magenta = property(get_Magenta, None)
|
|
385
|
+
_Colors_Meta_.Maroon = property(get_Maroon, None)
|
|
386
|
+
_Colors_Meta_.MediumAquamarine = property(get_MediumAquamarine, None)
|
|
387
|
+
_Colors_Meta_.MediumBlue = property(get_MediumBlue, None)
|
|
388
|
+
_Colors_Meta_.MediumOrchid = property(get_MediumOrchid, None)
|
|
389
|
+
_Colors_Meta_.MediumPurple = property(get_MediumPurple, None)
|
|
390
|
+
_Colors_Meta_.MediumSeaGreen = property(get_MediumSeaGreen, None)
|
|
391
|
+
_Colors_Meta_.MediumSlateBlue = property(get_MediumSlateBlue, None)
|
|
392
|
+
_Colors_Meta_.MediumSpringGreen = property(get_MediumSpringGreen, None)
|
|
393
|
+
_Colors_Meta_.MediumTurquoise = property(get_MediumTurquoise, None)
|
|
394
|
+
_Colors_Meta_.MediumVioletRed = property(get_MediumVioletRed, None)
|
|
395
|
+
_Colors_Meta_.MidnightBlue = property(get_MidnightBlue, None)
|
|
396
|
+
_Colors_Meta_.MintCream = property(get_MintCream, None)
|
|
397
|
+
_Colors_Meta_.MistyRose = property(get_MistyRose, None)
|
|
398
|
+
_Colors_Meta_.Moccasin = property(get_Moccasin, None)
|
|
399
|
+
_Colors_Meta_.NavajoWhite = property(get_NavajoWhite, None)
|
|
400
|
+
_Colors_Meta_.Navy = property(get_Navy, None)
|
|
401
|
+
_Colors_Meta_.OldLace = property(get_OldLace, None)
|
|
402
|
+
_Colors_Meta_.Olive = property(get_Olive, None)
|
|
403
|
+
_Colors_Meta_.OliveDrab = property(get_OliveDrab, None)
|
|
404
|
+
_Colors_Meta_.Orange = property(get_Orange, None)
|
|
405
|
+
_Colors_Meta_.OrangeRed = property(get_OrangeRed, None)
|
|
406
|
+
_Colors_Meta_.Orchid = property(get_Orchid, None)
|
|
407
|
+
_Colors_Meta_.PaleGoldenrod = property(get_PaleGoldenrod, None)
|
|
408
|
+
_Colors_Meta_.PaleGreen = property(get_PaleGreen, None)
|
|
409
|
+
_Colors_Meta_.PaleTurquoise = property(get_PaleTurquoise, None)
|
|
410
|
+
_Colors_Meta_.PaleVioletRed = property(get_PaleVioletRed, None)
|
|
411
|
+
_Colors_Meta_.PapayaWhip = property(get_PapayaWhip, None)
|
|
412
|
+
_Colors_Meta_.PeachPuff = property(get_PeachPuff, None)
|
|
413
|
+
_Colors_Meta_.Peru = property(get_Peru, None)
|
|
414
|
+
_Colors_Meta_.Pink = property(get_Pink, None)
|
|
415
|
+
_Colors_Meta_.Plum = property(get_Plum, None)
|
|
416
|
+
_Colors_Meta_.PowderBlue = property(get_PowderBlue, None)
|
|
417
|
+
_Colors_Meta_.Purple = property(get_Purple, None)
|
|
418
|
+
_Colors_Meta_.Red = property(get_Red, None)
|
|
419
|
+
_Colors_Meta_.RosyBrown = property(get_RosyBrown, None)
|
|
420
|
+
_Colors_Meta_.RoyalBlue = property(get_RoyalBlue, None)
|
|
421
|
+
_Colors_Meta_.SaddleBrown = property(get_SaddleBrown, None)
|
|
422
|
+
_Colors_Meta_.Salmon = property(get_Salmon, None)
|
|
423
|
+
_Colors_Meta_.SandyBrown = property(get_SandyBrown, None)
|
|
424
|
+
_Colors_Meta_.SeaGreen = property(get_SeaGreen, None)
|
|
425
|
+
_Colors_Meta_.SeaShell = property(get_SeaShell, None)
|
|
426
|
+
_Colors_Meta_.Sienna = property(get_Sienna, None)
|
|
427
|
+
_Colors_Meta_.Silver = property(get_Silver, None)
|
|
428
|
+
_Colors_Meta_.SkyBlue = property(get_SkyBlue, None)
|
|
429
|
+
_Colors_Meta_.SlateBlue = property(get_SlateBlue, None)
|
|
430
|
+
_Colors_Meta_.SlateGray = property(get_SlateGray, None)
|
|
431
|
+
_Colors_Meta_.Snow = property(get_Snow, None)
|
|
432
|
+
_Colors_Meta_.SpringGreen = property(get_SpringGreen, None)
|
|
433
|
+
_Colors_Meta_.SteelBlue = property(get_SteelBlue, None)
|
|
434
|
+
_Colors_Meta_.Tan = property(get_Tan, None)
|
|
435
|
+
_Colors_Meta_.Teal = property(get_Teal, None)
|
|
436
|
+
_Colors_Meta_.Thistle = property(get_Thistle, None)
|
|
437
|
+
_Colors_Meta_.Tomato = property(get_Tomato, None)
|
|
438
|
+
_Colors_Meta_.Transparent = property(get_Transparent, None)
|
|
439
|
+
_Colors_Meta_.Turquoise = property(get_Turquoise, None)
|
|
440
|
+
_Colors_Meta_.Violet = property(get_Violet, None)
|
|
441
|
+
_Colors_Meta_.Wheat = property(get_Wheat, None)
|
|
442
|
+
_Colors_Meta_.White = property(get_White, None)
|
|
443
|
+
_Colors_Meta_.WhiteSmoke = property(get_WhiteSmoke, None)
|
|
444
|
+
_Colors_Meta_.Yellow = property(get_Yellow, None)
|
|
445
|
+
_Colors_Meta_.YellowGreen = property(get_YellowGreen, None)
|
|
446
|
+
class DisplayId(Structure):
|
|
447
|
+
Value: UInt64
|
|
448
|
+
class IClosableNotifier(ComPtr):
|
|
449
|
+
extends: IInspectable
|
|
450
|
+
_classid_ = 'Microsoft.UI.IClosableNotifier'
|
|
451
|
+
_iid_ = Guid('{2989e93b-ed0f-5e79-90f2-eac592fc6e6a}')
|
|
452
|
+
@winrt_commethod(6)
|
|
453
|
+
def get_IsClosed(self) -> Boolean: ...
|
|
454
|
+
@winrt_commethod(7)
|
|
455
|
+
def add_Closed(self, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
456
|
+
@winrt_commethod(8)
|
|
457
|
+
def remove_Closed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
458
|
+
@winrt_commethod(9)
|
|
459
|
+
def add_FrameworkClosed(self, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
460
|
+
@winrt_commethod(10)
|
|
461
|
+
def remove_FrameworkClosed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
462
|
+
IsClosed = property(get_IsClosed, None)
|
|
463
|
+
Closed = event()
|
|
464
|
+
FrameworkClosed = event()
|
|
465
|
+
class IColorHelper(ComPtr):
|
|
466
|
+
extends: IInspectable
|
|
467
|
+
_classid_ = 'Microsoft.UI.IColorHelper'
|
|
468
|
+
_iid_ = Guid('{3adddccd-3949-585b-a566-ccb8350dd221}')
|
|
469
|
+
class IColorHelperStatics(ComPtr):
|
|
470
|
+
extends: IInspectable
|
|
471
|
+
_classid_ = 'Microsoft.UI.IColorHelperStatics'
|
|
472
|
+
_iid_ = Guid('{1d1d85a1-eb63-538a-84f0-019210bc406b}')
|
|
473
|
+
@winrt_commethod(6)
|
|
474
|
+
def FromArgb(self, a: Byte, r: Byte, g: Byte, b: Byte) -> win32more.Windows.UI.Color: ...
|
|
475
|
+
class IColors(ComPtr):
|
|
476
|
+
extends: IInspectable
|
|
477
|
+
_classid_ = 'Microsoft.UI.IColors'
|
|
478
|
+
_iid_ = Guid('{8cf15863-8411-5afd-946c-328e04da2f2f}')
|
|
479
|
+
class IColorsStatics(ComPtr):
|
|
480
|
+
extends: IInspectable
|
|
481
|
+
_classid_ = 'Microsoft.UI.IColorsStatics'
|
|
482
|
+
_iid_ = Guid('{8620a5b0-015a-57ac-a3f3-895d0b1269ae}')
|
|
483
|
+
@winrt_commethod(6)
|
|
484
|
+
def get_AliceBlue(self) -> win32more.Windows.UI.Color: ...
|
|
485
|
+
@winrt_commethod(7)
|
|
486
|
+
def get_AntiqueWhite(self) -> win32more.Windows.UI.Color: ...
|
|
487
|
+
@winrt_commethod(8)
|
|
488
|
+
def get_Aqua(self) -> win32more.Windows.UI.Color: ...
|
|
489
|
+
@winrt_commethod(9)
|
|
490
|
+
def get_Aquamarine(self) -> win32more.Windows.UI.Color: ...
|
|
491
|
+
@winrt_commethod(10)
|
|
492
|
+
def get_Azure(self) -> win32more.Windows.UI.Color: ...
|
|
493
|
+
@winrt_commethod(11)
|
|
494
|
+
def get_Beige(self) -> win32more.Windows.UI.Color: ...
|
|
495
|
+
@winrt_commethod(12)
|
|
496
|
+
def get_Bisque(self) -> win32more.Windows.UI.Color: ...
|
|
497
|
+
@winrt_commethod(13)
|
|
498
|
+
def get_Black(self) -> win32more.Windows.UI.Color: ...
|
|
499
|
+
@winrt_commethod(14)
|
|
500
|
+
def get_BlanchedAlmond(self) -> win32more.Windows.UI.Color: ...
|
|
501
|
+
@winrt_commethod(15)
|
|
502
|
+
def get_Blue(self) -> win32more.Windows.UI.Color: ...
|
|
503
|
+
@winrt_commethod(16)
|
|
504
|
+
def get_BlueViolet(self) -> win32more.Windows.UI.Color: ...
|
|
505
|
+
@winrt_commethod(17)
|
|
506
|
+
def get_Brown(self) -> win32more.Windows.UI.Color: ...
|
|
507
|
+
@winrt_commethod(18)
|
|
508
|
+
def get_BurlyWood(self) -> win32more.Windows.UI.Color: ...
|
|
509
|
+
@winrt_commethod(19)
|
|
510
|
+
def get_CadetBlue(self) -> win32more.Windows.UI.Color: ...
|
|
511
|
+
@winrt_commethod(20)
|
|
512
|
+
def get_Chartreuse(self) -> win32more.Windows.UI.Color: ...
|
|
513
|
+
@winrt_commethod(21)
|
|
514
|
+
def get_Chocolate(self) -> win32more.Windows.UI.Color: ...
|
|
515
|
+
@winrt_commethod(22)
|
|
516
|
+
def get_Coral(self) -> win32more.Windows.UI.Color: ...
|
|
517
|
+
@winrt_commethod(23)
|
|
518
|
+
def get_CornflowerBlue(self) -> win32more.Windows.UI.Color: ...
|
|
519
|
+
@winrt_commethod(24)
|
|
520
|
+
def get_Cornsilk(self) -> win32more.Windows.UI.Color: ...
|
|
521
|
+
@winrt_commethod(25)
|
|
522
|
+
def get_Crimson(self) -> win32more.Windows.UI.Color: ...
|
|
523
|
+
@winrt_commethod(26)
|
|
524
|
+
def get_Cyan(self) -> win32more.Windows.UI.Color: ...
|
|
525
|
+
@winrt_commethod(27)
|
|
526
|
+
def get_DarkBlue(self) -> win32more.Windows.UI.Color: ...
|
|
527
|
+
@winrt_commethod(28)
|
|
528
|
+
def get_DarkCyan(self) -> win32more.Windows.UI.Color: ...
|
|
529
|
+
@winrt_commethod(29)
|
|
530
|
+
def get_DarkGoldenrod(self) -> win32more.Windows.UI.Color: ...
|
|
531
|
+
@winrt_commethod(30)
|
|
532
|
+
def get_DarkGray(self) -> win32more.Windows.UI.Color: ...
|
|
533
|
+
@winrt_commethod(31)
|
|
534
|
+
def get_DarkGreen(self) -> win32more.Windows.UI.Color: ...
|
|
535
|
+
@winrt_commethod(32)
|
|
536
|
+
def get_DarkKhaki(self) -> win32more.Windows.UI.Color: ...
|
|
537
|
+
@winrt_commethod(33)
|
|
538
|
+
def get_DarkMagenta(self) -> win32more.Windows.UI.Color: ...
|
|
539
|
+
@winrt_commethod(34)
|
|
540
|
+
def get_DarkOliveGreen(self) -> win32more.Windows.UI.Color: ...
|
|
541
|
+
@winrt_commethod(35)
|
|
542
|
+
def get_DarkOrange(self) -> win32more.Windows.UI.Color: ...
|
|
543
|
+
@winrt_commethod(36)
|
|
544
|
+
def get_DarkOrchid(self) -> win32more.Windows.UI.Color: ...
|
|
545
|
+
@winrt_commethod(37)
|
|
546
|
+
def get_DarkRed(self) -> win32more.Windows.UI.Color: ...
|
|
547
|
+
@winrt_commethod(38)
|
|
548
|
+
def get_DarkSalmon(self) -> win32more.Windows.UI.Color: ...
|
|
549
|
+
@winrt_commethod(39)
|
|
550
|
+
def get_DarkSeaGreen(self) -> win32more.Windows.UI.Color: ...
|
|
551
|
+
@winrt_commethod(40)
|
|
552
|
+
def get_DarkSlateBlue(self) -> win32more.Windows.UI.Color: ...
|
|
553
|
+
@winrt_commethod(41)
|
|
554
|
+
def get_DarkSlateGray(self) -> win32more.Windows.UI.Color: ...
|
|
555
|
+
@winrt_commethod(42)
|
|
556
|
+
def get_DarkTurquoise(self) -> win32more.Windows.UI.Color: ...
|
|
557
|
+
@winrt_commethod(43)
|
|
558
|
+
def get_DarkViolet(self) -> win32more.Windows.UI.Color: ...
|
|
559
|
+
@winrt_commethod(44)
|
|
560
|
+
def get_DeepPink(self) -> win32more.Windows.UI.Color: ...
|
|
561
|
+
@winrt_commethod(45)
|
|
562
|
+
def get_DeepSkyBlue(self) -> win32more.Windows.UI.Color: ...
|
|
563
|
+
@winrt_commethod(46)
|
|
564
|
+
def get_DimGray(self) -> win32more.Windows.UI.Color: ...
|
|
565
|
+
@winrt_commethod(47)
|
|
566
|
+
def get_DodgerBlue(self) -> win32more.Windows.UI.Color: ...
|
|
567
|
+
@winrt_commethod(48)
|
|
568
|
+
def get_Firebrick(self) -> win32more.Windows.UI.Color: ...
|
|
569
|
+
@winrt_commethod(49)
|
|
570
|
+
def get_FloralWhite(self) -> win32more.Windows.UI.Color: ...
|
|
571
|
+
@winrt_commethod(50)
|
|
572
|
+
def get_ForestGreen(self) -> win32more.Windows.UI.Color: ...
|
|
573
|
+
@winrt_commethod(51)
|
|
574
|
+
def get_Fuchsia(self) -> win32more.Windows.UI.Color: ...
|
|
575
|
+
@winrt_commethod(52)
|
|
576
|
+
def get_Gainsboro(self) -> win32more.Windows.UI.Color: ...
|
|
577
|
+
@winrt_commethod(53)
|
|
578
|
+
def get_GhostWhite(self) -> win32more.Windows.UI.Color: ...
|
|
579
|
+
@winrt_commethod(54)
|
|
580
|
+
def get_Gold(self) -> win32more.Windows.UI.Color: ...
|
|
581
|
+
@winrt_commethod(55)
|
|
582
|
+
def get_Goldenrod(self) -> win32more.Windows.UI.Color: ...
|
|
583
|
+
@winrt_commethod(56)
|
|
584
|
+
def get_Gray(self) -> win32more.Windows.UI.Color: ...
|
|
585
|
+
@winrt_commethod(57)
|
|
586
|
+
def get_Green(self) -> win32more.Windows.UI.Color: ...
|
|
587
|
+
@winrt_commethod(58)
|
|
588
|
+
def get_GreenYellow(self) -> win32more.Windows.UI.Color: ...
|
|
589
|
+
@winrt_commethod(59)
|
|
590
|
+
def get_Honeydew(self) -> win32more.Windows.UI.Color: ...
|
|
591
|
+
@winrt_commethod(60)
|
|
592
|
+
def get_HotPink(self) -> win32more.Windows.UI.Color: ...
|
|
593
|
+
@winrt_commethod(61)
|
|
594
|
+
def get_IndianRed(self) -> win32more.Windows.UI.Color: ...
|
|
595
|
+
@winrt_commethod(62)
|
|
596
|
+
def get_Indigo(self) -> win32more.Windows.UI.Color: ...
|
|
597
|
+
@winrt_commethod(63)
|
|
598
|
+
def get_Ivory(self) -> win32more.Windows.UI.Color: ...
|
|
599
|
+
@winrt_commethod(64)
|
|
600
|
+
def get_Khaki(self) -> win32more.Windows.UI.Color: ...
|
|
601
|
+
@winrt_commethod(65)
|
|
602
|
+
def get_Lavender(self) -> win32more.Windows.UI.Color: ...
|
|
603
|
+
@winrt_commethod(66)
|
|
604
|
+
def get_LavenderBlush(self) -> win32more.Windows.UI.Color: ...
|
|
605
|
+
@winrt_commethod(67)
|
|
606
|
+
def get_LawnGreen(self) -> win32more.Windows.UI.Color: ...
|
|
607
|
+
@winrt_commethod(68)
|
|
608
|
+
def get_LemonChiffon(self) -> win32more.Windows.UI.Color: ...
|
|
609
|
+
@winrt_commethod(69)
|
|
610
|
+
def get_LightBlue(self) -> win32more.Windows.UI.Color: ...
|
|
611
|
+
@winrt_commethod(70)
|
|
612
|
+
def get_LightCoral(self) -> win32more.Windows.UI.Color: ...
|
|
613
|
+
@winrt_commethod(71)
|
|
614
|
+
def get_LightCyan(self) -> win32more.Windows.UI.Color: ...
|
|
615
|
+
@winrt_commethod(72)
|
|
616
|
+
def get_LightGoldenrodYellow(self) -> win32more.Windows.UI.Color: ...
|
|
617
|
+
@winrt_commethod(73)
|
|
618
|
+
def get_LightGreen(self) -> win32more.Windows.UI.Color: ...
|
|
619
|
+
@winrt_commethod(74)
|
|
620
|
+
def get_LightGray(self) -> win32more.Windows.UI.Color: ...
|
|
621
|
+
@winrt_commethod(75)
|
|
622
|
+
def get_LightPink(self) -> win32more.Windows.UI.Color: ...
|
|
623
|
+
@winrt_commethod(76)
|
|
624
|
+
def get_LightSalmon(self) -> win32more.Windows.UI.Color: ...
|
|
625
|
+
@winrt_commethod(77)
|
|
626
|
+
def get_LightSeaGreen(self) -> win32more.Windows.UI.Color: ...
|
|
627
|
+
@winrt_commethod(78)
|
|
628
|
+
def get_LightSkyBlue(self) -> win32more.Windows.UI.Color: ...
|
|
629
|
+
@winrt_commethod(79)
|
|
630
|
+
def get_LightSlateGray(self) -> win32more.Windows.UI.Color: ...
|
|
631
|
+
@winrt_commethod(80)
|
|
632
|
+
def get_LightSteelBlue(self) -> win32more.Windows.UI.Color: ...
|
|
633
|
+
@winrt_commethod(81)
|
|
634
|
+
def get_LightYellow(self) -> win32more.Windows.UI.Color: ...
|
|
635
|
+
@winrt_commethod(82)
|
|
636
|
+
def get_Lime(self) -> win32more.Windows.UI.Color: ...
|
|
637
|
+
@winrt_commethod(83)
|
|
638
|
+
def get_LimeGreen(self) -> win32more.Windows.UI.Color: ...
|
|
639
|
+
@winrt_commethod(84)
|
|
640
|
+
def get_Linen(self) -> win32more.Windows.UI.Color: ...
|
|
641
|
+
@winrt_commethod(85)
|
|
642
|
+
def get_Magenta(self) -> win32more.Windows.UI.Color: ...
|
|
643
|
+
@winrt_commethod(86)
|
|
644
|
+
def get_Maroon(self) -> win32more.Windows.UI.Color: ...
|
|
645
|
+
@winrt_commethod(87)
|
|
646
|
+
def get_MediumAquamarine(self) -> win32more.Windows.UI.Color: ...
|
|
647
|
+
@winrt_commethod(88)
|
|
648
|
+
def get_MediumBlue(self) -> win32more.Windows.UI.Color: ...
|
|
649
|
+
@winrt_commethod(89)
|
|
650
|
+
def get_MediumOrchid(self) -> win32more.Windows.UI.Color: ...
|
|
651
|
+
@winrt_commethod(90)
|
|
652
|
+
def get_MediumPurple(self) -> win32more.Windows.UI.Color: ...
|
|
653
|
+
@winrt_commethod(91)
|
|
654
|
+
def get_MediumSeaGreen(self) -> win32more.Windows.UI.Color: ...
|
|
655
|
+
@winrt_commethod(92)
|
|
656
|
+
def get_MediumSlateBlue(self) -> win32more.Windows.UI.Color: ...
|
|
657
|
+
@winrt_commethod(93)
|
|
658
|
+
def get_MediumSpringGreen(self) -> win32more.Windows.UI.Color: ...
|
|
659
|
+
@winrt_commethod(94)
|
|
660
|
+
def get_MediumTurquoise(self) -> win32more.Windows.UI.Color: ...
|
|
661
|
+
@winrt_commethod(95)
|
|
662
|
+
def get_MediumVioletRed(self) -> win32more.Windows.UI.Color: ...
|
|
663
|
+
@winrt_commethod(96)
|
|
664
|
+
def get_MidnightBlue(self) -> win32more.Windows.UI.Color: ...
|
|
665
|
+
@winrt_commethod(97)
|
|
666
|
+
def get_MintCream(self) -> win32more.Windows.UI.Color: ...
|
|
667
|
+
@winrt_commethod(98)
|
|
668
|
+
def get_MistyRose(self) -> win32more.Windows.UI.Color: ...
|
|
669
|
+
@winrt_commethod(99)
|
|
670
|
+
def get_Moccasin(self) -> win32more.Windows.UI.Color: ...
|
|
671
|
+
@winrt_commethod(100)
|
|
672
|
+
def get_NavajoWhite(self) -> win32more.Windows.UI.Color: ...
|
|
673
|
+
@winrt_commethod(101)
|
|
674
|
+
def get_Navy(self) -> win32more.Windows.UI.Color: ...
|
|
675
|
+
@winrt_commethod(102)
|
|
676
|
+
def get_OldLace(self) -> win32more.Windows.UI.Color: ...
|
|
677
|
+
@winrt_commethod(103)
|
|
678
|
+
def get_Olive(self) -> win32more.Windows.UI.Color: ...
|
|
679
|
+
@winrt_commethod(104)
|
|
680
|
+
def get_OliveDrab(self) -> win32more.Windows.UI.Color: ...
|
|
681
|
+
@winrt_commethod(105)
|
|
682
|
+
def get_Orange(self) -> win32more.Windows.UI.Color: ...
|
|
683
|
+
@winrt_commethod(106)
|
|
684
|
+
def get_OrangeRed(self) -> win32more.Windows.UI.Color: ...
|
|
685
|
+
@winrt_commethod(107)
|
|
686
|
+
def get_Orchid(self) -> win32more.Windows.UI.Color: ...
|
|
687
|
+
@winrt_commethod(108)
|
|
688
|
+
def get_PaleGoldenrod(self) -> win32more.Windows.UI.Color: ...
|
|
689
|
+
@winrt_commethod(109)
|
|
690
|
+
def get_PaleGreen(self) -> win32more.Windows.UI.Color: ...
|
|
691
|
+
@winrt_commethod(110)
|
|
692
|
+
def get_PaleTurquoise(self) -> win32more.Windows.UI.Color: ...
|
|
693
|
+
@winrt_commethod(111)
|
|
694
|
+
def get_PaleVioletRed(self) -> win32more.Windows.UI.Color: ...
|
|
695
|
+
@winrt_commethod(112)
|
|
696
|
+
def get_PapayaWhip(self) -> win32more.Windows.UI.Color: ...
|
|
697
|
+
@winrt_commethod(113)
|
|
698
|
+
def get_PeachPuff(self) -> win32more.Windows.UI.Color: ...
|
|
699
|
+
@winrt_commethod(114)
|
|
700
|
+
def get_Peru(self) -> win32more.Windows.UI.Color: ...
|
|
701
|
+
@winrt_commethod(115)
|
|
702
|
+
def get_Pink(self) -> win32more.Windows.UI.Color: ...
|
|
703
|
+
@winrt_commethod(116)
|
|
704
|
+
def get_Plum(self) -> win32more.Windows.UI.Color: ...
|
|
705
|
+
@winrt_commethod(117)
|
|
706
|
+
def get_PowderBlue(self) -> win32more.Windows.UI.Color: ...
|
|
707
|
+
@winrt_commethod(118)
|
|
708
|
+
def get_Purple(self) -> win32more.Windows.UI.Color: ...
|
|
709
|
+
@winrt_commethod(119)
|
|
710
|
+
def get_Red(self) -> win32more.Windows.UI.Color: ...
|
|
711
|
+
@winrt_commethod(120)
|
|
712
|
+
def get_RosyBrown(self) -> win32more.Windows.UI.Color: ...
|
|
713
|
+
@winrt_commethod(121)
|
|
714
|
+
def get_RoyalBlue(self) -> win32more.Windows.UI.Color: ...
|
|
715
|
+
@winrt_commethod(122)
|
|
716
|
+
def get_SaddleBrown(self) -> win32more.Windows.UI.Color: ...
|
|
717
|
+
@winrt_commethod(123)
|
|
718
|
+
def get_Salmon(self) -> win32more.Windows.UI.Color: ...
|
|
719
|
+
@winrt_commethod(124)
|
|
720
|
+
def get_SandyBrown(self) -> win32more.Windows.UI.Color: ...
|
|
721
|
+
@winrt_commethod(125)
|
|
722
|
+
def get_SeaGreen(self) -> win32more.Windows.UI.Color: ...
|
|
723
|
+
@winrt_commethod(126)
|
|
724
|
+
def get_SeaShell(self) -> win32more.Windows.UI.Color: ...
|
|
725
|
+
@winrt_commethod(127)
|
|
726
|
+
def get_Sienna(self) -> win32more.Windows.UI.Color: ...
|
|
727
|
+
@winrt_commethod(128)
|
|
728
|
+
def get_Silver(self) -> win32more.Windows.UI.Color: ...
|
|
729
|
+
@winrt_commethod(129)
|
|
730
|
+
def get_SkyBlue(self) -> win32more.Windows.UI.Color: ...
|
|
731
|
+
@winrt_commethod(130)
|
|
732
|
+
def get_SlateBlue(self) -> win32more.Windows.UI.Color: ...
|
|
733
|
+
@winrt_commethod(131)
|
|
734
|
+
def get_SlateGray(self) -> win32more.Windows.UI.Color: ...
|
|
735
|
+
@winrt_commethod(132)
|
|
736
|
+
def get_Snow(self) -> win32more.Windows.UI.Color: ...
|
|
737
|
+
@winrt_commethod(133)
|
|
738
|
+
def get_SpringGreen(self) -> win32more.Windows.UI.Color: ...
|
|
739
|
+
@winrt_commethod(134)
|
|
740
|
+
def get_SteelBlue(self) -> win32more.Windows.UI.Color: ...
|
|
741
|
+
@winrt_commethod(135)
|
|
742
|
+
def get_Tan(self) -> win32more.Windows.UI.Color: ...
|
|
743
|
+
@winrt_commethod(136)
|
|
744
|
+
def get_Teal(self) -> win32more.Windows.UI.Color: ...
|
|
745
|
+
@winrt_commethod(137)
|
|
746
|
+
def get_Thistle(self) -> win32more.Windows.UI.Color: ...
|
|
747
|
+
@winrt_commethod(138)
|
|
748
|
+
def get_Tomato(self) -> win32more.Windows.UI.Color: ...
|
|
749
|
+
@winrt_commethod(139)
|
|
750
|
+
def get_Transparent(self) -> win32more.Windows.UI.Color: ...
|
|
751
|
+
@winrt_commethod(140)
|
|
752
|
+
def get_Turquoise(self) -> win32more.Windows.UI.Color: ...
|
|
753
|
+
@winrt_commethod(141)
|
|
754
|
+
def get_Violet(self) -> win32more.Windows.UI.Color: ...
|
|
755
|
+
@winrt_commethod(142)
|
|
756
|
+
def get_Wheat(self) -> win32more.Windows.UI.Color: ...
|
|
757
|
+
@winrt_commethod(143)
|
|
758
|
+
def get_White(self) -> win32more.Windows.UI.Color: ...
|
|
759
|
+
@winrt_commethod(144)
|
|
760
|
+
def get_WhiteSmoke(self) -> win32more.Windows.UI.Color: ...
|
|
761
|
+
@winrt_commethod(145)
|
|
762
|
+
def get_Yellow(self) -> win32more.Windows.UI.Color: ...
|
|
763
|
+
@winrt_commethod(146)
|
|
764
|
+
def get_YellowGreen(self) -> win32more.Windows.UI.Color: ...
|
|
765
|
+
AliceBlue = property(get_AliceBlue, None)
|
|
766
|
+
AntiqueWhite = property(get_AntiqueWhite, None)
|
|
767
|
+
Aqua = property(get_Aqua, None)
|
|
768
|
+
Aquamarine = property(get_Aquamarine, None)
|
|
769
|
+
Azure = property(get_Azure, None)
|
|
770
|
+
Beige = property(get_Beige, None)
|
|
771
|
+
Bisque = property(get_Bisque, None)
|
|
772
|
+
Black = property(get_Black, None)
|
|
773
|
+
BlanchedAlmond = property(get_BlanchedAlmond, None)
|
|
774
|
+
Blue = property(get_Blue, None)
|
|
775
|
+
BlueViolet = property(get_BlueViolet, None)
|
|
776
|
+
Brown = property(get_Brown, None)
|
|
777
|
+
BurlyWood = property(get_BurlyWood, None)
|
|
778
|
+
CadetBlue = property(get_CadetBlue, None)
|
|
779
|
+
Chartreuse = property(get_Chartreuse, None)
|
|
780
|
+
Chocolate = property(get_Chocolate, None)
|
|
781
|
+
Coral = property(get_Coral, None)
|
|
782
|
+
CornflowerBlue = property(get_CornflowerBlue, None)
|
|
783
|
+
Cornsilk = property(get_Cornsilk, None)
|
|
784
|
+
Crimson = property(get_Crimson, None)
|
|
785
|
+
Cyan = property(get_Cyan, None)
|
|
786
|
+
DarkBlue = property(get_DarkBlue, None)
|
|
787
|
+
DarkCyan = property(get_DarkCyan, None)
|
|
788
|
+
DarkGoldenrod = property(get_DarkGoldenrod, None)
|
|
789
|
+
DarkGray = property(get_DarkGray, None)
|
|
790
|
+
DarkGreen = property(get_DarkGreen, None)
|
|
791
|
+
DarkKhaki = property(get_DarkKhaki, None)
|
|
792
|
+
DarkMagenta = property(get_DarkMagenta, None)
|
|
793
|
+
DarkOliveGreen = property(get_DarkOliveGreen, None)
|
|
794
|
+
DarkOrange = property(get_DarkOrange, None)
|
|
795
|
+
DarkOrchid = property(get_DarkOrchid, None)
|
|
796
|
+
DarkRed = property(get_DarkRed, None)
|
|
797
|
+
DarkSalmon = property(get_DarkSalmon, None)
|
|
798
|
+
DarkSeaGreen = property(get_DarkSeaGreen, None)
|
|
799
|
+
DarkSlateBlue = property(get_DarkSlateBlue, None)
|
|
800
|
+
DarkSlateGray = property(get_DarkSlateGray, None)
|
|
801
|
+
DarkTurquoise = property(get_DarkTurquoise, None)
|
|
802
|
+
DarkViolet = property(get_DarkViolet, None)
|
|
803
|
+
DeepPink = property(get_DeepPink, None)
|
|
804
|
+
DeepSkyBlue = property(get_DeepSkyBlue, None)
|
|
805
|
+
DimGray = property(get_DimGray, None)
|
|
806
|
+
DodgerBlue = property(get_DodgerBlue, None)
|
|
807
|
+
Firebrick = property(get_Firebrick, None)
|
|
808
|
+
FloralWhite = property(get_FloralWhite, None)
|
|
809
|
+
ForestGreen = property(get_ForestGreen, None)
|
|
810
|
+
Fuchsia = property(get_Fuchsia, None)
|
|
811
|
+
Gainsboro = property(get_Gainsboro, None)
|
|
812
|
+
GhostWhite = property(get_GhostWhite, None)
|
|
813
|
+
Gold = property(get_Gold, None)
|
|
814
|
+
Goldenrod = property(get_Goldenrod, None)
|
|
815
|
+
Gray = property(get_Gray, None)
|
|
816
|
+
Green = property(get_Green, None)
|
|
817
|
+
GreenYellow = property(get_GreenYellow, None)
|
|
818
|
+
Honeydew = property(get_Honeydew, None)
|
|
819
|
+
HotPink = property(get_HotPink, None)
|
|
820
|
+
IndianRed = property(get_IndianRed, None)
|
|
821
|
+
Indigo = property(get_Indigo, None)
|
|
822
|
+
Ivory = property(get_Ivory, None)
|
|
823
|
+
Khaki = property(get_Khaki, None)
|
|
824
|
+
Lavender = property(get_Lavender, None)
|
|
825
|
+
LavenderBlush = property(get_LavenderBlush, None)
|
|
826
|
+
LawnGreen = property(get_LawnGreen, None)
|
|
827
|
+
LemonChiffon = property(get_LemonChiffon, None)
|
|
828
|
+
LightBlue = property(get_LightBlue, None)
|
|
829
|
+
LightCoral = property(get_LightCoral, None)
|
|
830
|
+
LightCyan = property(get_LightCyan, None)
|
|
831
|
+
LightGoldenrodYellow = property(get_LightGoldenrodYellow, None)
|
|
832
|
+
LightGray = property(get_LightGray, None)
|
|
833
|
+
LightGreen = property(get_LightGreen, None)
|
|
834
|
+
LightPink = property(get_LightPink, None)
|
|
835
|
+
LightSalmon = property(get_LightSalmon, None)
|
|
836
|
+
LightSeaGreen = property(get_LightSeaGreen, None)
|
|
837
|
+
LightSkyBlue = property(get_LightSkyBlue, None)
|
|
838
|
+
LightSlateGray = property(get_LightSlateGray, None)
|
|
839
|
+
LightSteelBlue = property(get_LightSteelBlue, None)
|
|
840
|
+
LightYellow = property(get_LightYellow, None)
|
|
841
|
+
Lime = property(get_Lime, None)
|
|
842
|
+
LimeGreen = property(get_LimeGreen, None)
|
|
843
|
+
Linen = property(get_Linen, None)
|
|
844
|
+
Magenta = property(get_Magenta, None)
|
|
845
|
+
Maroon = property(get_Maroon, None)
|
|
846
|
+
MediumAquamarine = property(get_MediumAquamarine, None)
|
|
847
|
+
MediumBlue = property(get_MediumBlue, None)
|
|
848
|
+
MediumOrchid = property(get_MediumOrchid, None)
|
|
849
|
+
MediumPurple = property(get_MediumPurple, None)
|
|
850
|
+
MediumSeaGreen = property(get_MediumSeaGreen, None)
|
|
851
|
+
MediumSlateBlue = property(get_MediumSlateBlue, None)
|
|
852
|
+
MediumSpringGreen = property(get_MediumSpringGreen, None)
|
|
853
|
+
MediumTurquoise = property(get_MediumTurquoise, None)
|
|
854
|
+
MediumVioletRed = property(get_MediumVioletRed, None)
|
|
855
|
+
MidnightBlue = property(get_MidnightBlue, None)
|
|
856
|
+
MintCream = property(get_MintCream, None)
|
|
857
|
+
MistyRose = property(get_MistyRose, None)
|
|
858
|
+
Moccasin = property(get_Moccasin, None)
|
|
859
|
+
NavajoWhite = property(get_NavajoWhite, None)
|
|
860
|
+
Navy = property(get_Navy, None)
|
|
861
|
+
OldLace = property(get_OldLace, None)
|
|
862
|
+
Olive = property(get_Olive, None)
|
|
863
|
+
OliveDrab = property(get_OliveDrab, None)
|
|
864
|
+
Orange = property(get_Orange, None)
|
|
865
|
+
OrangeRed = property(get_OrangeRed, None)
|
|
866
|
+
Orchid = property(get_Orchid, None)
|
|
867
|
+
PaleGoldenrod = property(get_PaleGoldenrod, None)
|
|
868
|
+
PaleGreen = property(get_PaleGreen, None)
|
|
869
|
+
PaleTurquoise = property(get_PaleTurquoise, None)
|
|
870
|
+
PaleVioletRed = property(get_PaleVioletRed, None)
|
|
871
|
+
PapayaWhip = property(get_PapayaWhip, None)
|
|
872
|
+
PeachPuff = property(get_PeachPuff, None)
|
|
873
|
+
Peru = property(get_Peru, None)
|
|
874
|
+
Pink = property(get_Pink, None)
|
|
875
|
+
Plum = property(get_Plum, None)
|
|
876
|
+
PowderBlue = property(get_PowderBlue, None)
|
|
877
|
+
Purple = property(get_Purple, None)
|
|
878
|
+
Red = property(get_Red, None)
|
|
879
|
+
RosyBrown = property(get_RosyBrown, None)
|
|
880
|
+
RoyalBlue = property(get_RoyalBlue, None)
|
|
881
|
+
SaddleBrown = property(get_SaddleBrown, None)
|
|
882
|
+
Salmon = property(get_Salmon, None)
|
|
883
|
+
SandyBrown = property(get_SandyBrown, None)
|
|
884
|
+
SeaGreen = property(get_SeaGreen, None)
|
|
885
|
+
SeaShell = property(get_SeaShell, None)
|
|
886
|
+
Sienna = property(get_Sienna, None)
|
|
887
|
+
Silver = property(get_Silver, None)
|
|
888
|
+
SkyBlue = property(get_SkyBlue, None)
|
|
889
|
+
SlateBlue = property(get_SlateBlue, None)
|
|
890
|
+
SlateGray = property(get_SlateGray, None)
|
|
891
|
+
Snow = property(get_Snow, None)
|
|
892
|
+
SpringGreen = property(get_SpringGreen, None)
|
|
893
|
+
SteelBlue = property(get_SteelBlue, None)
|
|
894
|
+
Tan = property(get_Tan, None)
|
|
895
|
+
Teal = property(get_Teal, None)
|
|
896
|
+
Thistle = property(get_Thistle, None)
|
|
897
|
+
Tomato = property(get_Tomato, None)
|
|
898
|
+
Transparent = property(get_Transparent, None)
|
|
899
|
+
Turquoise = property(get_Turquoise, None)
|
|
900
|
+
Violet = property(get_Violet, None)
|
|
901
|
+
Wheat = property(get_Wheat, None)
|
|
902
|
+
White = property(get_White, None)
|
|
903
|
+
WhiteSmoke = property(get_WhiteSmoke, None)
|
|
904
|
+
Yellow = property(get_Yellow, None)
|
|
905
|
+
YellowGreen = property(get_YellowGreen, None)
|
|
906
|
+
class IconId(Structure):
|
|
907
|
+
Value: UInt64
|
|
908
|
+
class WindowId(Structure):
|
|
909
|
+
Value: UInt64
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
make_ready(__name__)
|