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,3414 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Xaml
|
|
4
|
+
import win32more.Microsoft.UI.Xaml.Automation
|
|
5
|
+
import win32more.Microsoft.UI.Xaml.Automation.Peers
|
|
6
|
+
import win32more.Microsoft.UI.Xaml.Automation.Provider
|
|
7
|
+
import win32more.Microsoft.UI.Xaml.Controls
|
|
8
|
+
import win32more.Microsoft.UI.Xaml.Controls.Primitives
|
|
9
|
+
import win32more.Windows.Foundation
|
|
10
|
+
import win32more.Windows.Foundation.Collections
|
|
11
|
+
class AccessibilityView(Enum, Int32):
|
|
12
|
+
Raw = 0
|
|
13
|
+
Control = 1
|
|
14
|
+
Content = 2
|
|
15
|
+
class AnimatedVisualPlayerAutomationPeer(ComPtr):
|
|
16
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
17
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAnimatedVisualPlayerAutomationPeer
|
|
18
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AnimatedVisualPlayerAutomationPeer'
|
|
19
|
+
def __init__(self, *args, **kwargs):
|
|
20
|
+
if kwargs:
|
|
21
|
+
super().__init__(**kwargs)
|
|
22
|
+
elif len(args) == 1:
|
|
23
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AnimatedVisualPlayerAutomationPeer.CreateInstance(*args, None, None))
|
|
24
|
+
else:
|
|
25
|
+
raise ValueError('no matched constructor')
|
|
26
|
+
@winrt_factorymethod
|
|
27
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAnimatedVisualPlayerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.AnimatedVisualPlayer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AnimatedVisualPlayerAutomationPeer: ...
|
|
28
|
+
class AppBarAutomationPeer(ComPtr):
|
|
29
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
30
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarAutomationPeer
|
|
31
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AppBarAutomationPeer'
|
|
32
|
+
def __init__(self, *args, **kwargs):
|
|
33
|
+
if kwargs:
|
|
34
|
+
super().__init__(**kwargs)
|
|
35
|
+
elif len(args) == 1:
|
|
36
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
37
|
+
else:
|
|
38
|
+
raise ValueError('no matched constructor')
|
|
39
|
+
@winrt_factorymethod
|
|
40
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.AppBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarAutomationPeer: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
43
|
+
@winrt_mixinmethod
|
|
44
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
45
|
+
@winrt_mixinmethod
|
|
46
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
51
|
+
@winrt_mixinmethod
|
|
52
|
+
def get_IsModal(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
53
|
+
@winrt_mixinmethod
|
|
54
|
+
def get_IsTopmost(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
55
|
+
@winrt_mixinmethod
|
|
56
|
+
def get_Maximizable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
57
|
+
@winrt_mixinmethod
|
|
58
|
+
def get_Minimizable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
59
|
+
@winrt_mixinmethod
|
|
60
|
+
def get_InteractionState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> win32more.Microsoft.UI.Xaml.Automation.WindowInteractionState: ...
|
|
61
|
+
@winrt_mixinmethod
|
|
62
|
+
def get_VisualState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> win32more.Microsoft.UI.Xaml.Automation.WindowVisualState: ...
|
|
63
|
+
@winrt_mixinmethod
|
|
64
|
+
def Close(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Void: ...
|
|
65
|
+
@winrt_mixinmethod
|
|
66
|
+
def SetVisualState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider, state: win32more.Microsoft.UI.Xaml.Automation.WindowVisualState) -> Void: ...
|
|
67
|
+
@winrt_mixinmethod
|
|
68
|
+
def WaitForInputIdle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider, milliseconds: Int32) -> Boolean: ...
|
|
69
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
70
|
+
InteractionState = property(get_InteractionState, None)
|
|
71
|
+
IsModal = property(get_IsModal, None)
|
|
72
|
+
IsTopmost = property(get_IsTopmost, None)
|
|
73
|
+
Maximizable = property(get_Maximizable, None)
|
|
74
|
+
Minimizable = property(get_Minimizable, None)
|
|
75
|
+
ToggleState = property(get_ToggleState, None)
|
|
76
|
+
VisualState = property(get_VisualState, None)
|
|
77
|
+
class AppBarButtonAutomationPeer(ComPtr):
|
|
78
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer
|
|
79
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarButtonAutomationPeer
|
|
80
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AppBarButtonAutomationPeer'
|
|
81
|
+
def __init__(self, *args, **kwargs):
|
|
82
|
+
if kwargs:
|
|
83
|
+
super().__init__(**kwargs)
|
|
84
|
+
elif len(args) == 1:
|
|
85
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
86
|
+
else:
|
|
87
|
+
raise ValueError('no matched constructor')
|
|
88
|
+
@winrt_factorymethod
|
|
89
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.AppBarButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarButtonAutomationPeer: ...
|
|
90
|
+
@winrt_mixinmethod
|
|
91
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
92
|
+
@winrt_mixinmethod
|
|
93
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
94
|
+
@winrt_mixinmethod
|
|
95
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
96
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
97
|
+
class AppBarToggleButtonAutomationPeer(ComPtr):
|
|
98
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer
|
|
99
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarToggleButtonAutomationPeer
|
|
100
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AppBarToggleButtonAutomationPeer'
|
|
101
|
+
def __init__(self, *args, **kwargs):
|
|
102
|
+
if kwargs:
|
|
103
|
+
super().__init__(**kwargs)
|
|
104
|
+
elif len(args) == 1:
|
|
105
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarToggleButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
106
|
+
else:
|
|
107
|
+
raise ValueError('no matched constructor')
|
|
108
|
+
@winrt_factorymethod
|
|
109
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAppBarToggleButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.AppBarToggleButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarToggleButtonAutomationPeer: ...
|
|
110
|
+
class AutoSuggestBoxAutomationPeer(ComPtr):
|
|
111
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
112
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutoSuggestBoxAutomationPeer
|
|
113
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AutoSuggestBoxAutomationPeer'
|
|
114
|
+
def __init__(self, *args, **kwargs):
|
|
115
|
+
if kwargs:
|
|
116
|
+
super().__init__(**kwargs)
|
|
117
|
+
elif len(args) == 1:
|
|
118
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AutoSuggestBoxAutomationPeer.CreateInstanceWithOwner(*args))
|
|
119
|
+
else:
|
|
120
|
+
raise ValueError('no matched constructor')
|
|
121
|
+
@winrt_factorymethod
|
|
122
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutoSuggestBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.AutoSuggestBox) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutoSuggestBoxAutomationPeer: ...
|
|
123
|
+
@winrt_mixinmethod
|
|
124
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
125
|
+
class AutomationControlType(Enum, Int32):
|
|
126
|
+
Button = 0
|
|
127
|
+
Calendar = 1
|
|
128
|
+
CheckBox = 2
|
|
129
|
+
ComboBox = 3
|
|
130
|
+
Edit = 4
|
|
131
|
+
Hyperlink = 5
|
|
132
|
+
Image = 6
|
|
133
|
+
ListItem = 7
|
|
134
|
+
List = 8
|
|
135
|
+
Menu = 9
|
|
136
|
+
MenuBar = 10
|
|
137
|
+
MenuItem = 11
|
|
138
|
+
ProgressBar = 12
|
|
139
|
+
RadioButton = 13
|
|
140
|
+
ScrollBar = 14
|
|
141
|
+
Slider = 15
|
|
142
|
+
Spinner = 16
|
|
143
|
+
StatusBar = 17
|
|
144
|
+
Tab = 18
|
|
145
|
+
TabItem = 19
|
|
146
|
+
Text = 20
|
|
147
|
+
ToolBar = 21
|
|
148
|
+
ToolTip = 22
|
|
149
|
+
Tree = 23
|
|
150
|
+
TreeItem = 24
|
|
151
|
+
Custom = 25
|
|
152
|
+
Group = 26
|
|
153
|
+
Thumb = 27
|
|
154
|
+
DataGrid = 28
|
|
155
|
+
DataItem = 29
|
|
156
|
+
Document = 30
|
|
157
|
+
SplitButton = 31
|
|
158
|
+
Window = 32
|
|
159
|
+
Pane = 33
|
|
160
|
+
Header = 34
|
|
161
|
+
HeaderItem = 35
|
|
162
|
+
Table = 36
|
|
163
|
+
TitleBar = 37
|
|
164
|
+
Separator = 38
|
|
165
|
+
SemanticZoom = 39
|
|
166
|
+
AppBar = 40
|
|
167
|
+
FlipView = 41
|
|
168
|
+
class AutomationEvents(Enum, Int32):
|
|
169
|
+
ToolTipOpened = 0
|
|
170
|
+
ToolTipClosed = 1
|
|
171
|
+
MenuOpened = 2
|
|
172
|
+
MenuClosed = 3
|
|
173
|
+
AutomationFocusChanged = 4
|
|
174
|
+
InvokePatternOnInvoked = 5
|
|
175
|
+
SelectionItemPatternOnElementAddedToSelection = 6
|
|
176
|
+
SelectionItemPatternOnElementRemovedFromSelection = 7
|
|
177
|
+
SelectionItemPatternOnElementSelected = 8
|
|
178
|
+
SelectionPatternOnInvalidated = 9
|
|
179
|
+
TextPatternOnTextSelectionChanged = 10
|
|
180
|
+
TextPatternOnTextChanged = 11
|
|
181
|
+
AsyncContentLoaded = 12
|
|
182
|
+
PropertyChanged = 13
|
|
183
|
+
StructureChanged = 14
|
|
184
|
+
DragStart = 15
|
|
185
|
+
DragCancel = 16
|
|
186
|
+
DragComplete = 17
|
|
187
|
+
DragEnter = 18
|
|
188
|
+
DragLeave = 19
|
|
189
|
+
Dropped = 20
|
|
190
|
+
LiveRegionChanged = 21
|
|
191
|
+
InputReachedTarget = 22
|
|
192
|
+
InputReachedOtherElement = 23
|
|
193
|
+
InputDiscarded = 24
|
|
194
|
+
WindowClosed = 25
|
|
195
|
+
WindowOpened = 26
|
|
196
|
+
ConversionTargetChanged = 27
|
|
197
|
+
TextEditTextChanged = 28
|
|
198
|
+
LayoutInvalidated = 29
|
|
199
|
+
class AutomationHeadingLevel(Enum, Int32):
|
|
200
|
+
None_ = 0
|
|
201
|
+
Level1 = 1
|
|
202
|
+
Level2 = 2
|
|
203
|
+
Level3 = 3
|
|
204
|
+
Level4 = 4
|
|
205
|
+
Level5 = 5
|
|
206
|
+
Level6 = 6
|
|
207
|
+
Level7 = 7
|
|
208
|
+
Level8 = 8
|
|
209
|
+
Level9 = 9
|
|
210
|
+
class AutomationLandmarkType(Enum, Int32):
|
|
211
|
+
None_ = 0
|
|
212
|
+
Custom = 1
|
|
213
|
+
Form = 2
|
|
214
|
+
Main = 3
|
|
215
|
+
Navigation = 4
|
|
216
|
+
Search = 5
|
|
217
|
+
class AutomationLiveSetting(Enum, Int32):
|
|
218
|
+
Off = 0
|
|
219
|
+
Polite = 1
|
|
220
|
+
Assertive = 2
|
|
221
|
+
class AutomationNavigationDirection(Enum, Int32):
|
|
222
|
+
Parent = 0
|
|
223
|
+
NextSibling = 1
|
|
224
|
+
PreviousSibling = 2
|
|
225
|
+
FirstChild = 3
|
|
226
|
+
LastChild = 4
|
|
227
|
+
class AutomationNotificationKind(Enum, Int32):
|
|
228
|
+
ItemAdded = 0
|
|
229
|
+
ItemRemoved = 1
|
|
230
|
+
ActionCompleted = 2
|
|
231
|
+
ActionAborted = 3
|
|
232
|
+
Other = 4
|
|
233
|
+
class AutomationNotificationProcessing(Enum, Int32):
|
|
234
|
+
ImportantAll = 0
|
|
235
|
+
ImportantMostRecent = 1
|
|
236
|
+
All = 2
|
|
237
|
+
MostRecent = 3
|
|
238
|
+
CurrentThenMostRecent = 4
|
|
239
|
+
class AutomationOrientation(Enum, Int32):
|
|
240
|
+
None_ = 0
|
|
241
|
+
Horizontal = 1
|
|
242
|
+
Vertical = 2
|
|
243
|
+
class AutomationPeer(ComPtr):
|
|
244
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
245
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer
|
|
246
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AutomationPeer'
|
|
247
|
+
def __init__(self, *args, **kwargs):
|
|
248
|
+
if kwargs:
|
|
249
|
+
super().__init__(**kwargs)
|
|
250
|
+
elif len(args) == 0:
|
|
251
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer.CreateInstance(*args, None, None))
|
|
252
|
+
else:
|
|
253
|
+
raise ValueError('no matched constructor')
|
|
254
|
+
@winrt_factorymethod
|
|
255
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
256
|
+
@winrt_mixinmethod
|
|
257
|
+
def get_EventsSource(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
258
|
+
@winrt_mixinmethod
|
|
259
|
+
def put_EventsSource(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, value: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
260
|
+
@winrt_mixinmethod
|
|
261
|
+
def GetPattern(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, patternInterface: win32more.Microsoft.UI.Xaml.Automation.Peers.PatternInterface) -> IInspectable: ...
|
|
262
|
+
@winrt_mixinmethod
|
|
263
|
+
def RaiseAutomationEvent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, eventId: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationEvents) -> Void: ...
|
|
264
|
+
@winrt_mixinmethod
|
|
265
|
+
def RaisePropertyChangedEvent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, automationProperty: win32more.Microsoft.UI.Xaml.Automation.AutomationProperty, oldValue: IInspectable, newValue: IInspectable) -> Void: ...
|
|
266
|
+
@winrt_mixinmethod
|
|
267
|
+
def GetAcceleratorKey(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
268
|
+
@winrt_mixinmethod
|
|
269
|
+
def GetAccessKey(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
270
|
+
@winrt_mixinmethod
|
|
271
|
+
def GetAutomationControlType(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationControlType: ...
|
|
272
|
+
@winrt_mixinmethod
|
|
273
|
+
def GetAutomationId(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
274
|
+
@winrt_mixinmethod
|
|
275
|
+
def GetBoundingRectangle(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Windows.Foundation.Rect: ...
|
|
276
|
+
@winrt_mixinmethod
|
|
277
|
+
def GetChildren(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
278
|
+
@winrt_mixinmethod
|
|
279
|
+
def Navigate(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, direction: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNavigationDirection) -> IInspectable: ...
|
|
280
|
+
@winrt_mixinmethod
|
|
281
|
+
def GetClassName(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
282
|
+
@winrt_mixinmethod
|
|
283
|
+
def GetClickablePoint(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Windows.Foundation.Point: ...
|
|
284
|
+
@winrt_mixinmethod
|
|
285
|
+
def GetHelpText(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
286
|
+
@winrt_mixinmethod
|
|
287
|
+
def GetItemStatus(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
288
|
+
@winrt_mixinmethod
|
|
289
|
+
def GetItemType(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
290
|
+
@winrt_mixinmethod
|
|
291
|
+
def GetLabeledBy(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
292
|
+
@winrt_mixinmethod
|
|
293
|
+
def GetLocalizedControlType(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
294
|
+
@winrt_mixinmethod
|
|
295
|
+
def GetName(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
296
|
+
@winrt_mixinmethod
|
|
297
|
+
def GetOrientation(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationOrientation: ...
|
|
298
|
+
@winrt_mixinmethod
|
|
299
|
+
def HasKeyboardFocus(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
300
|
+
@winrt_mixinmethod
|
|
301
|
+
def IsContentElement(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
302
|
+
@winrt_mixinmethod
|
|
303
|
+
def IsControlElement(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
304
|
+
@winrt_mixinmethod
|
|
305
|
+
def IsEnabled(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
306
|
+
@winrt_mixinmethod
|
|
307
|
+
def IsKeyboardFocusable(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
308
|
+
@winrt_mixinmethod
|
|
309
|
+
def IsOffscreen(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
310
|
+
@winrt_mixinmethod
|
|
311
|
+
def IsPassword(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
312
|
+
@winrt_mixinmethod
|
|
313
|
+
def IsRequiredForForm(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
314
|
+
@winrt_mixinmethod
|
|
315
|
+
def SetFocus(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Void: ...
|
|
316
|
+
@winrt_mixinmethod
|
|
317
|
+
def GetParent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
318
|
+
@winrt_mixinmethod
|
|
319
|
+
def InvalidatePeer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Void: ...
|
|
320
|
+
@winrt_mixinmethod
|
|
321
|
+
def GetPeerFromPoint(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, point: win32more.Windows.Foundation.Point) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
322
|
+
@winrt_mixinmethod
|
|
323
|
+
def GetElementFromPoint(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, pointInWindowCoordinates: win32more.Windows.Foundation.Point) -> IInspectable: ...
|
|
324
|
+
@winrt_mixinmethod
|
|
325
|
+
def GetFocusedElement(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> IInspectable: ...
|
|
326
|
+
@winrt_mixinmethod
|
|
327
|
+
def GetLiveSetting(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLiveSetting: ...
|
|
328
|
+
@winrt_mixinmethod
|
|
329
|
+
def ShowContextMenu(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Void: ...
|
|
330
|
+
@winrt_mixinmethod
|
|
331
|
+
def GetControlledPeers(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
332
|
+
@winrt_mixinmethod
|
|
333
|
+
def GetAnnotations(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation]: ...
|
|
334
|
+
@winrt_mixinmethod
|
|
335
|
+
def SetParent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
336
|
+
@winrt_mixinmethod
|
|
337
|
+
def RaiseTextEditTextChangedEvent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, automationTextEditChangeType: win32more.Microsoft.UI.Xaml.Automation.AutomationTextEditChangeType, changedData: win32more.Windows.Foundation.Collections.IVectorView[WinRT_String]) -> Void: ...
|
|
338
|
+
@winrt_mixinmethod
|
|
339
|
+
def GetPositionInSet(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Int32: ...
|
|
340
|
+
@winrt_mixinmethod
|
|
341
|
+
def GetSizeOfSet(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Int32: ...
|
|
342
|
+
@winrt_mixinmethod
|
|
343
|
+
def GetLevel(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Int32: ...
|
|
344
|
+
@winrt_mixinmethod
|
|
345
|
+
def RaiseStructureChangedEvent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, structureChangeType: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationStructureChangeType, child: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
346
|
+
@winrt_mixinmethod
|
|
347
|
+
def GetLandmarkType(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLandmarkType: ...
|
|
348
|
+
@winrt_mixinmethod
|
|
349
|
+
def GetLocalizedLandmarkType(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
350
|
+
@winrt_mixinmethod
|
|
351
|
+
def IsPeripheral(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
352
|
+
@winrt_mixinmethod
|
|
353
|
+
def IsDataValidForForm(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
354
|
+
@winrt_mixinmethod
|
|
355
|
+
def GetFullDescription(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> WinRT_String: ...
|
|
356
|
+
@winrt_mixinmethod
|
|
357
|
+
def GetCulture(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Int32: ...
|
|
358
|
+
@winrt_mixinmethod
|
|
359
|
+
def RaiseNotificationEvent(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer, notificationKind: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationKind, notificationProcessing: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationProcessing, displayString: WinRT_String, activityId: WinRT_String) -> Void: ...
|
|
360
|
+
@winrt_mixinmethod
|
|
361
|
+
def GetHeadingLevel(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationHeadingLevel: ...
|
|
362
|
+
@winrt_mixinmethod
|
|
363
|
+
def IsDialog(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer) -> Boolean: ...
|
|
364
|
+
@winrt_mixinmethod
|
|
365
|
+
def PeerFromProvider(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerProtected, provider: win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
366
|
+
@winrt_mixinmethod
|
|
367
|
+
def ProviderFromPeer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerProtected, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
368
|
+
@winrt_mixinmethod
|
|
369
|
+
def GetPatternCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides, patternInterface: win32more.Microsoft.UI.Xaml.Automation.Peers.PatternInterface) -> IInspectable: ...
|
|
370
|
+
@winrt_mixinmethod
|
|
371
|
+
def GetAcceleratorKeyCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
372
|
+
@winrt_mixinmethod
|
|
373
|
+
def GetAccessKeyCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
374
|
+
@winrt_mixinmethod
|
|
375
|
+
def GetAutomationControlTypeCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationControlType: ...
|
|
376
|
+
@winrt_mixinmethod
|
|
377
|
+
def GetAutomationIdCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
378
|
+
@winrt_mixinmethod
|
|
379
|
+
def GetBoundingRectangleCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Rect: ...
|
|
380
|
+
@winrt_mixinmethod
|
|
381
|
+
def GetChildrenCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
382
|
+
@winrt_mixinmethod
|
|
383
|
+
def NavigateCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides, direction: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNavigationDirection) -> IInspectable: ...
|
|
384
|
+
@winrt_mixinmethod
|
|
385
|
+
def GetClassNameCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
386
|
+
@winrt_mixinmethod
|
|
387
|
+
def GetClickablePointCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Point: ...
|
|
388
|
+
@winrt_mixinmethod
|
|
389
|
+
def GetHelpTextCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
390
|
+
@winrt_mixinmethod
|
|
391
|
+
def GetItemStatusCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
392
|
+
@winrt_mixinmethod
|
|
393
|
+
def GetItemTypeCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
394
|
+
@winrt_mixinmethod
|
|
395
|
+
def GetLabeledByCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
396
|
+
@winrt_mixinmethod
|
|
397
|
+
def GetLocalizedControlTypeCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
398
|
+
@winrt_mixinmethod
|
|
399
|
+
def GetNameCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
400
|
+
@winrt_mixinmethod
|
|
401
|
+
def GetOrientationCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationOrientation: ...
|
|
402
|
+
@winrt_mixinmethod
|
|
403
|
+
def HasKeyboardFocusCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
404
|
+
@winrt_mixinmethod
|
|
405
|
+
def IsContentElementCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
406
|
+
@winrt_mixinmethod
|
|
407
|
+
def IsControlElementCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
408
|
+
@winrt_mixinmethod
|
|
409
|
+
def IsEnabledCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
410
|
+
@winrt_mixinmethod
|
|
411
|
+
def IsKeyboardFocusableCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
412
|
+
@winrt_mixinmethod
|
|
413
|
+
def IsOffscreenCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
414
|
+
@winrt_mixinmethod
|
|
415
|
+
def IsPasswordCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
416
|
+
@winrt_mixinmethod
|
|
417
|
+
def IsRequiredForFormCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
418
|
+
@winrt_mixinmethod
|
|
419
|
+
def SetFocusCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Void: ...
|
|
420
|
+
@winrt_mixinmethod
|
|
421
|
+
def GetPeerFromPointCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides, point: win32more.Windows.Foundation.Point) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
422
|
+
@winrt_mixinmethod
|
|
423
|
+
def GetElementFromPointCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides, pointInWindowCoordinates: win32more.Windows.Foundation.Point) -> IInspectable: ...
|
|
424
|
+
@winrt_mixinmethod
|
|
425
|
+
def GetFocusedElementCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> IInspectable: ...
|
|
426
|
+
@winrt_mixinmethod
|
|
427
|
+
def GetLiveSettingCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLiveSetting: ...
|
|
428
|
+
@winrt_mixinmethod
|
|
429
|
+
def ShowContextMenuCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Void: ...
|
|
430
|
+
@winrt_mixinmethod
|
|
431
|
+
def GetControlledPeersCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
432
|
+
@winrt_mixinmethod
|
|
433
|
+
def GetAnnotationsCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation]: ...
|
|
434
|
+
@winrt_mixinmethod
|
|
435
|
+
def GetPositionInSetCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Int32: ...
|
|
436
|
+
@winrt_mixinmethod
|
|
437
|
+
def GetSizeOfSetCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Int32: ...
|
|
438
|
+
@winrt_mixinmethod
|
|
439
|
+
def GetLevelCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Int32: ...
|
|
440
|
+
@winrt_mixinmethod
|
|
441
|
+
def GetLandmarkTypeCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLandmarkType: ...
|
|
442
|
+
@winrt_mixinmethod
|
|
443
|
+
def GetLocalizedLandmarkTypeCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
444
|
+
@winrt_mixinmethod
|
|
445
|
+
def IsPeripheralCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
446
|
+
@winrt_mixinmethod
|
|
447
|
+
def IsDataValidForFormCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
448
|
+
@winrt_mixinmethod
|
|
449
|
+
def GetFullDescriptionCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> WinRT_String: ...
|
|
450
|
+
@winrt_mixinmethod
|
|
451
|
+
def GetDescribedByCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
452
|
+
@winrt_mixinmethod
|
|
453
|
+
def GetFlowsToCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
454
|
+
@winrt_mixinmethod
|
|
455
|
+
def GetFlowsFromCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
456
|
+
@winrt_mixinmethod
|
|
457
|
+
def GetCultureCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Int32: ...
|
|
458
|
+
@winrt_mixinmethod
|
|
459
|
+
def GetHeadingLevelCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationHeadingLevel: ...
|
|
460
|
+
@winrt_mixinmethod
|
|
461
|
+
def IsDialogCore(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides) -> Boolean: ...
|
|
462
|
+
@winrt_classmethod
|
|
463
|
+
def ListenerExists(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerStatics, eventId: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationEvents) -> Boolean: ...
|
|
464
|
+
@winrt_classmethod
|
|
465
|
+
def GenerateRawElementProviderRuntimeId(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerStatics) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RawElementProviderRuntimeId: ...
|
|
466
|
+
EventsSource = property(get_EventsSource, put_EventsSource)
|
|
467
|
+
class _AutomationPeerAnnotation_Meta_(ComPtr.__class__):
|
|
468
|
+
pass
|
|
469
|
+
class AutomationPeerAnnotation(ComPtr, metaclass=_AutomationPeerAnnotation_Meta_):
|
|
470
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
471
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation
|
|
472
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation'
|
|
473
|
+
def __init__(self, *args, **kwargs):
|
|
474
|
+
if kwargs:
|
|
475
|
+
super().__init__(**kwargs)
|
|
476
|
+
elif len(args) == 0:
|
|
477
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation.CreateInstance(*args))
|
|
478
|
+
elif len(args) == 1:
|
|
479
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation.CreateInstance(*args))
|
|
480
|
+
elif len(args) == 2:
|
|
481
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation.CreateWithPeerParameter(*args))
|
|
482
|
+
else:
|
|
483
|
+
raise ValueError('no matched constructor')
|
|
484
|
+
@winrt_overload
|
|
485
|
+
@winrt_activatemethod
|
|
486
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation: ...
|
|
487
|
+
@CreateInstance.register
|
|
488
|
+
@winrt_factorymethod
|
|
489
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationFactory, type: win32more.Microsoft.UI.Xaml.Automation.AnnotationType) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation: ...
|
|
490
|
+
@winrt_factorymethod
|
|
491
|
+
def CreateWithPeerParameter(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationFactory, type: win32more.Microsoft.UI.Xaml.Automation.AnnotationType, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation: ...
|
|
492
|
+
@winrt_mixinmethod
|
|
493
|
+
def get_Type(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation) -> win32more.Microsoft.UI.Xaml.Automation.AnnotationType: ...
|
|
494
|
+
@winrt_mixinmethod
|
|
495
|
+
def put_Type(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation, value: win32more.Microsoft.UI.Xaml.Automation.AnnotationType) -> Void: ...
|
|
496
|
+
@winrt_mixinmethod
|
|
497
|
+
def get_Peer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
498
|
+
@winrt_mixinmethod
|
|
499
|
+
def put_Peer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation, value: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
500
|
+
@winrt_classmethod
|
|
501
|
+
def get_TypeProperty(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
502
|
+
@winrt_classmethod
|
|
503
|
+
def get_PeerProperty(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
504
|
+
Peer = property(get_Peer, put_Peer)
|
|
505
|
+
Type = property(get_Type, put_Type)
|
|
506
|
+
_AutomationPeerAnnotation_Meta_.PeerProperty = property(get_PeerProperty, None)
|
|
507
|
+
_AutomationPeerAnnotation_Meta_.TypeProperty = property(get_TypeProperty, None)
|
|
508
|
+
class AutomationStructureChangeType(Enum, Int32):
|
|
509
|
+
ChildAdded = 0
|
|
510
|
+
ChildRemoved = 1
|
|
511
|
+
ChildrenInvalidated = 2
|
|
512
|
+
ChildrenBulkAdded = 3
|
|
513
|
+
ChildrenBulkRemoved = 4
|
|
514
|
+
ChildrenReordered = 5
|
|
515
|
+
class BreadcrumbBarItemAutomationPeer(ComPtr):
|
|
516
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
517
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IBreadcrumbBarItemAutomationPeer
|
|
518
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.BreadcrumbBarItemAutomationPeer'
|
|
519
|
+
def __init__(self, *args, **kwargs):
|
|
520
|
+
if kwargs:
|
|
521
|
+
super().__init__(**kwargs)
|
|
522
|
+
elif len(args) == 1:
|
|
523
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.BreadcrumbBarItemAutomationPeer.CreateInstance(*args, None, None))
|
|
524
|
+
else:
|
|
525
|
+
raise ValueError('no matched constructor')
|
|
526
|
+
@winrt_factorymethod
|
|
527
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IBreadcrumbBarItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.BreadcrumbBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.BreadcrumbBarItemAutomationPeer: ...
|
|
528
|
+
@winrt_mixinmethod
|
|
529
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
530
|
+
class ButtonAutomationPeer(ComPtr):
|
|
531
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer
|
|
532
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IButtonAutomationPeer
|
|
533
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer'
|
|
534
|
+
def __init__(self, *args, **kwargs):
|
|
535
|
+
if kwargs:
|
|
536
|
+
super().__init__(**kwargs)
|
|
537
|
+
elif len(args) == 1:
|
|
538
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
539
|
+
else:
|
|
540
|
+
raise ValueError('no matched constructor')
|
|
541
|
+
@winrt_factorymethod
|
|
542
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Button, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer: ...
|
|
543
|
+
@winrt_mixinmethod
|
|
544
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
545
|
+
class ButtonBaseAutomationPeer(ComPtr):
|
|
546
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
547
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IButtonBaseAutomationPeer
|
|
548
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer'
|
|
549
|
+
def __init__(self, *args, **kwargs):
|
|
550
|
+
if kwargs:
|
|
551
|
+
super().__init__(**kwargs)
|
|
552
|
+
elif len(args) == 1:
|
|
553
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
554
|
+
else:
|
|
555
|
+
raise ValueError('no matched constructor')
|
|
556
|
+
@winrt_factorymethod
|
|
557
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IButtonBaseAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ButtonBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer: ...
|
|
558
|
+
class CalendarDatePickerAutomationPeer(ComPtr):
|
|
559
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
560
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ICalendarDatePickerAutomationPeer
|
|
561
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.CalendarDatePickerAutomationPeer'
|
|
562
|
+
def __init__(self, *args, **kwargs):
|
|
563
|
+
if kwargs:
|
|
564
|
+
super().__init__(**kwargs)
|
|
565
|
+
elif len(args) == 1:
|
|
566
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.CalendarDatePickerAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
567
|
+
else:
|
|
568
|
+
raise ValueError('no matched constructor')
|
|
569
|
+
@winrt_factorymethod
|
|
570
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ICalendarDatePickerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.CalendarDatePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.CalendarDatePickerAutomationPeer: ...
|
|
571
|
+
@winrt_mixinmethod
|
|
572
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
573
|
+
@winrt_mixinmethod
|
|
574
|
+
def get_IsReadOnly(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider) -> Boolean: ...
|
|
575
|
+
@winrt_mixinmethod
|
|
576
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider) -> WinRT_String: ...
|
|
577
|
+
@winrt_mixinmethod
|
|
578
|
+
def SetValue(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider, value: WinRT_String) -> Void: ...
|
|
579
|
+
IsReadOnly = property(get_IsReadOnly, None)
|
|
580
|
+
Value = property(get_Value, None)
|
|
581
|
+
class CheckBoxAutomationPeer(ComPtr):
|
|
582
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer
|
|
583
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ICheckBoxAutomationPeer
|
|
584
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.CheckBoxAutomationPeer'
|
|
585
|
+
def __init__(self, *args, **kwargs):
|
|
586
|
+
if kwargs:
|
|
587
|
+
super().__init__(**kwargs)
|
|
588
|
+
elif len(args) == 1:
|
|
589
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.CheckBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
590
|
+
else:
|
|
591
|
+
raise ValueError('no matched constructor')
|
|
592
|
+
@winrt_factorymethod
|
|
593
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ICheckBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.CheckBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.CheckBoxAutomationPeer: ...
|
|
594
|
+
class ColorPickerSliderAutomationPeer(ComPtr):
|
|
595
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SliderAutomationPeer
|
|
596
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IColorPickerSliderAutomationPeer
|
|
597
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ColorPickerSliderAutomationPeer'
|
|
598
|
+
def __init__(self, *args, **kwargs):
|
|
599
|
+
if kwargs:
|
|
600
|
+
super().__init__(**kwargs)
|
|
601
|
+
elif len(args) == 1:
|
|
602
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ColorPickerSliderAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
603
|
+
else:
|
|
604
|
+
raise ValueError('no matched constructor')
|
|
605
|
+
@winrt_factorymethod
|
|
606
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IColorPickerSliderAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ColorPickerSlider, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ColorPickerSliderAutomationPeer: ...
|
|
607
|
+
class ColorSpectrumAutomationPeer(ComPtr):
|
|
608
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
609
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IColorSpectrumAutomationPeer
|
|
610
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ColorSpectrumAutomationPeer'
|
|
611
|
+
def __init__(self, *args, **kwargs):
|
|
612
|
+
if kwargs:
|
|
613
|
+
super().__init__(**kwargs)
|
|
614
|
+
elif len(args) == 1:
|
|
615
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ColorSpectrumAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
616
|
+
else:
|
|
617
|
+
raise ValueError('no matched constructor')
|
|
618
|
+
@winrt_factorymethod
|
|
619
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IColorSpectrumAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ColorSpectrum, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ColorSpectrumAutomationPeer: ...
|
|
620
|
+
class ComboBoxAutomationPeer(ComPtr):
|
|
621
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer
|
|
622
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxAutomationPeer
|
|
623
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer'
|
|
624
|
+
def __init__(self, *args, **kwargs):
|
|
625
|
+
if kwargs:
|
|
626
|
+
super().__init__(**kwargs)
|
|
627
|
+
elif len(args) == 1:
|
|
628
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
629
|
+
else:
|
|
630
|
+
raise ValueError('no matched constructor')
|
|
631
|
+
@winrt_factorymethod
|
|
632
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ComboBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer: ...
|
|
633
|
+
@winrt_mixinmethod
|
|
634
|
+
def get_IsReadOnly(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider) -> Boolean: ...
|
|
635
|
+
@winrt_mixinmethod
|
|
636
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider) -> WinRT_String: ...
|
|
637
|
+
@winrt_mixinmethod
|
|
638
|
+
def SetValue(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IValueProvider, value: WinRT_String) -> Void: ...
|
|
639
|
+
@winrt_mixinmethod
|
|
640
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
641
|
+
@winrt_mixinmethod
|
|
642
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
643
|
+
@winrt_mixinmethod
|
|
644
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
645
|
+
@winrt_mixinmethod
|
|
646
|
+
def get_IsModal(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
647
|
+
@winrt_mixinmethod
|
|
648
|
+
def get_IsTopmost(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
649
|
+
@winrt_mixinmethod
|
|
650
|
+
def get_Maximizable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
651
|
+
@winrt_mixinmethod
|
|
652
|
+
def get_Minimizable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Boolean: ...
|
|
653
|
+
@winrt_mixinmethod
|
|
654
|
+
def get_InteractionState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> win32more.Microsoft.UI.Xaml.Automation.WindowInteractionState: ...
|
|
655
|
+
@winrt_mixinmethod
|
|
656
|
+
def get_VisualState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> win32more.Microsoft.UI.Xaml.Automation.WindowVisualState: ...
|
|
657
|
+
@winrt_mixinmethod
|
|
658
|
+
def Close(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider) -> Void: ...
|
|
659
|
+
@winrt_mixinmethod
|
|
660
|
+
def SetVisualState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider, state: win32more.Microsoft.UI.Xaml.Automation.WindowVisualState) -> Void: ...
|
|
661
|
+
@winrt_mixinmethod
|
|
662
|
+
def WaitForInputIdle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IWindowProvider, milliseconds: Int32) -> Boolean: ...
|
|
663
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
664
|
+
InteractionState = property(get_InteractionState, None)
|
|
665
|
+
IsModal = property(get_IsModal, None)
|
|
666
|
+
IsReadOnly = property(get_IsReadOnly, None)
|
|
667
|
+
IsTopmost = property(get_IsTopmost, None)
|
|
668
|
+
Maximizable = property(get_Maximizable, None)
|
|
669
|
+
Minimizable = property(get_Minimizable, None)
|
|
670
|
+
Value = property(get_Value, None)
|
|
671
|
+
VisualState = property(get_VisualState, None)
|
|
672
|
+
class ComboBoxItemAutomationPeer(ComPtr):
|
|
673
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
674
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemAutomationPeer
|
|
675
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemAutomationPeer'
|
|
676
|
+
def __init__(self, *args, **kwargs):
|
|
677
|
+
if kwargs:
|
|
678
|
+
super().__init__(**kwargs)
|
|
679
|
+
elif len(args) == 1:
|
|
680
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
681
|
+
else:
|
|
682
|
+
raise ValueError('no matched constructor')
|
|
683
|
+
@winrt_factorymethod
|
|
684
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ComboBoxItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemAutomationPeer: ...
|
|
685
|
+
class ComboBoxItemDataAutomationPeer(ComPtr):
|
|
686
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer
|
|
687
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemDataAutomationPeer
|
|
688
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemDataAutomationPeer'
|
|
689
|
+
def __init__(self, *args, **kwargs):
|
|
690
|
+
if kwargs:
|
|
691
|
+
super().__init__(**kwargs)
|
|
692
|
+
elif len(args) == 2:
|
|
693
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
694
|
+
else:
|
|
695
|
+
raise ValueError('no matched constructor')
|
|
696
|
+
@winrt_factorymethod
|
|
697
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemDataAutomationPeer: ...
|
|
698
|
+
@winrt_mixinmethod
|
|
699
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
700
|
+
class DatePickerAutomationPeer(ComPtr):
|
|
701
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
702
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IDatePickerAutomationPeer
|
|
703
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.DatePickerAutomationPeer'
|
|
704
|
+
def __init__(self, *args, **kwargs):
|
|
705
|
+
if kwargs:
|
|
706
|
+
super().__init__(**kwargs)
|
|
707
|
+
elif len(args) == 1:
|
|
708
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.DatePickerAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
709
|
+
else:
|
|
710
|
+
raise ValueError('no matched constructor')
|
|
711
|
+
@winrt_factorymethod
|
|
712
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IDatePickerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.DatePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.DatePickerAutomationPeer: ...
|
|
713
|
+
class DatePickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
714
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
715
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IDatePickerFlyoutPresenterAutomationPeer
|
|
716
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.DatePickerFlyoutPresenterAutomationPeer'
|
|
717
|
+
class DropDownButtonAutomationPeer(ComPtr):
|
|
718
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer
|
|
719
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IDropDownButtonAutomationPeer
|
|
720
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.DropDownButtonAutomationPeer'
|
|
721
|
+
def __init__(self, *args, **kwargs):
|
|
722
|
+
if kwargs:
|
|
723
|
+
super().__init__(**kwargs)
|
|
724
|
+
elif len(args) == 1:
|
|
725
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.DropDownButtonAutomationPeer.CreateInstance(*args, None, None))
|
|
726
|
+
else:
|
|
727
|
+
raise ValueError('no matched constructor')
|
|
728
|
+
@winrt_factorymethod
|
|
729
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IDropDownButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.DropDownButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.DropDownButtonAutomationPeer: ...
|
|
730
|
+
@winrt_mixinmethod
|
|
731
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
732
|
+
@winrt_mixinmethod
|
|
733
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
734
|
+
@winrt_mixinmethod
|
|
735
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
736
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
737
|
+
class ExpanderAutomationPeer(ComPtr):
|
|
738
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
739
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IExpanderAutomationPeer
|
|
740
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ExpanderAutomationPeer'
|
|
741
|
+
def __init__(self, *args, **kwargs):
|
|
742
|
+
if kwargs:
|
|
743
|
+
super().__init__(**kwargs)
|
|
744
|
+
elif len(args) == 1:
|
|
745
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ExpanderAutomationPeer.CreateInstance(*args, None, None))
|
|
746
|
+
else:
|
|
747
|
+
raise ValueError('no matched constructor')
|
|
748
|
+
@winrt_factorymethod
|
|
749
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IExpanderAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Expander, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ExpanderAutomationPeer: ...
|
|
750
|
+
@winrt_mixinmethod
|
|
751
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
752
|
+
@winrt_mixinmethod
|
|
753
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
754
|
+
@winrt_mixinmethod
|
|
755
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
756
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
757
|
+
class FlipViewAutomationPeer(ComPtr):
|
|
758
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer
|
|
759
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewAutomationPeer
|
|
760
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer'
|
|
761
|
+
def __init__(self, *args, **kwargs):
|
|
762
|
+
if kwargs:
|
|
763
|
+
super().__init__(**kwargs)
|
|
764
|
+
elif len(args) == 1:
|
|
765
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
766
|
+
else:
|
|
767
|
+
raise ValueError('no matched constructor')
|
|
768
|
+
@winrt_factorymethod
|
|
769
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.FlipView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer: ...
|
|
770
|
+
class FlipViewItemAutomationPeer(ComPtr):
|
|
771
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
772
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemAutomationPeer
|
|
773
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.FlipViewItemAutomationPeer'
|
|
774
|
+
def __init__(self, *args, **kwargs):
|
|
775
|
+
if kwargs:
|
|
776
|
+
super().__init__(**kwargs)
|
|
777
|
+
elif len(args) == 1:
|
|
778
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
779
|
+
else:
|
|
780
|
+
raise ValueError('no matched constructor')
|
|
781
|
+
@winrt_factorymethod
|
|
782
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.FlipViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemAutomationPeer: ...
|
|
783
|
+
class FlipViewItemDataAutomationPeer(ComPtr):
|
|
784
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer
|
|
785
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemDataAutomationPeer
|
|
786
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.FlipViewItemDataAutomationPeer'
|
|
787
|
+
def __init__(self, *args, **kwargs):
|
|
788
|
+
if kwargs:
|
|
789
|
+
super().__init__(**kwargs)
|
|
790
|
+
elif len(args) == 2:
|
|
791
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
792
|
+
else:
|
|
793
|
+
raise ValueError('no matched constructor')
|
|
794
|
+
@winrt_factorymethod
|
|
795
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemDataAutomationPeer: ...
|
|
796
|
+
@winrt_mixinmethod
|
|
797
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
798
|
+
class FlyoutPresenterAutomationPeer(ComPtr):
|
|
799
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
800
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlyoutPresenterAutomationPeer
|
|
801
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.FlyoutPresenterAutomationPeer'
|
|
802
|
+
def __init__(self, *args, **kwargs):
|
|
803
|
+
if kwargs:
|
|
804
|
+
super().__init__(**kwargs)
|
|
805
|
+
elif len(args) == 1:
|
|
806
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.FlyoutPresenterAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
807
|
+
else:
|
|
808
|
+
raise ValueError('no matched constructor')
|
|
809
|
+
@winrt_factorymethod
|
|
810
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFlyoutPresenterAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.FlyoutPresenter, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlyoutPresenterAutomationPeer: ...
|
|
811
|
+
class FrameworkElementAutomationPeer(ComPtr):
|
|
812
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer
|
|
813
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeer
|
|
814
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer'
|
|
815
|
+
def __init__(self, *args, **kwargs):
|
|
816
|
+
if kwargs:
|
|
817
|
+
super().__init__(**kwargs)
|
|
818
|
+
elif len(args) == 1:
|
|
819
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
820
|
+
else:
|
|
821
|
+
raise ValueError('no matched constructor')
|
|
822
|
+
@winrt_factorymethod
|
|
823
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.FrameworkElement, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer: ...
|
|
824
|
+
@winrt_mixinmethod
|
|
825
|
+
def get_Owner(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeer) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
826
|
+
@winrt_classmethod
|
|
827
|
+
def FromElement(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeerStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
828
|
+
@winrt_classmethod
|
|
829
|
+
def CreatePeerForElement(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeerStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
830
|
+
Owner = property(get_Owner, None)
|
|
831
|
+
class GridViewAutomationPeer(ComPtr):
|
|
832
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer
|
|
833
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewAutomationPeer
|
|
834
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer'
|
|
835
|
+
def __init__(self, *args, **kwargs):
|
|
836
|
+
if kwargs:
|
|
837
|
+
super().__init__(**kwargs)
|
|
838
|
+
elif len(args) == 1:
|
|
839
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
840
|
+
else:
|
|
841
|
+
raise ValueError('no matched constructor')
|
|
842
|
+
@winrt_factorymethod
|
|
843
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.GridView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer: ...
|
|
844
|
+
class GridViewHeaderItemAutomationPeer(ComPtr):
|
|
845
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer
|
|
846
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewHeaderItemAutomationPeer
|
|
847
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.GridViewHeaderItemAutomationPeer'
|
|
848
|
+
def __init__(self, *args, **kwargs):
|
|
849
|
+
if kwargs:
|
|
850
|
+
super().__init__(**kwargs)
|
|
851
|
+
elif len(args) == 1:
|
|
852
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewHeaderItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
853
|
+
else:
|
|
854
|
+
raise ValueError('no matched constructor')
|
|
855
|
+
@winrt_factorymethod
|
|
856
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewHeaderItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.GridViewHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewHeaderItemAutomationPeer: ...
|
|
857
|
+
class GridViewItemAutomationPeer(ComPtr):
|
|
858
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
859
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewItemAutomationPeer
|
|
860
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.GridViewItemAutomationPeer'
|
|
861
|
+
def __init__(self, *args, **kwargs):
|
|
862
|
+
if kwargs:
|
|
863
|
+
super().__init__(**kwargs)
|
|
864
|
+
elif len(args) == 1:
|
|
865
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
866
|
+
else:
|
|
867
|
+
raise ValueError('no matched constructor')
|
|
868
|
+
@winrt_factorymethod
|
|
869
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.GridViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemAutomationPeer: ...
|
|
870
|
+
class GridViewItemDataAutomationPeer(ComPtr):
|
|
871
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer
|
|
872
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewItemDataAutomationPeer
|
|
873
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.GridViewItemDataAutomationPeer'
|
|
874
|
+
def __init__(self, *args, **kwargs):
|
|
875
|
+
if kwargs:
|
|
876
|
+
super().__init__(**kwargs)
|
|
877
|
+
elif len(args) == 2:
|
|
878
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
879
|
+
else:
|
|
880
|
+
raise ValueError('no matched constructor')
|
|
881
|
+
@winrt_factorymethod
|
|
882
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IGridViewItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemDataAutomationPeer: ...
|
|
883
|
+
@winrt_mixinmethod
|
|
884
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
885
|
+
class GroupItemAutomationPeer(ComPtr):
|
|
886
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
887
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IGroupItemAutomationPeer
|
|
888
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.GroupItemAutomationPeer'
|
|
889
|
+
def __init__(self, *args, **kwargs):
|
|
890
|
+
if kwargs:
|
|
891
|
+
super().__init__(**kwargs)
|
|
892
|
+
elif len(args) == 1:
|
|
893
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.GroupItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
894
|
+
else:
|
|
895
|
+
raise ValueError('no matched constructor')
|
|
896
|
+
@winrt_factorymethod
|
|
897
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IGroupItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.GroupItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GroupItemAutomationPeer: ...
|
|
898
|
+
class HubAutomationPeer(ComPtr):
|
|
899
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
900
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IHubAutomationPeer
|
|
901
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.HubAutomationPeer'
|
|
902
|
+
def __init__(self, *args, **kwargs):
|
|
903
|
+
if kwargs:
|
|
904
|
+
super().__init__(**kwargs)
|
|
905
|
+
elif len(args) == 1:
|
|
906
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.HubAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
907
|
+
else:
|
|
908
|
+
raise ValueError('no matched constructor')
|
|
909
|
+
@winrt_factorymethod
|
|
910
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IHubAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Hub, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HubAutomationPeer: ...
|
|
911
|
+
class HubSectionAutomationPeer(ComPtr):
|
|
912
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
913
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IHubSectionAutomationPeer
|
|
914
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.HubSectionAutomationPeer'
|
|
915
|
+
def __init__(self, *args, **kwargs):
|
|
916
|
+
if kwargs:
|
|
917
|
+
super().__init__(**kwargs)
|
|
918
|
+
elif len(args) == 1:
|
|
919
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.HubSectionAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
920
|
+
else:
|
|
921
|
+
raise ValueError('no matched constructor')
|
|
922
|
+
@winrt_factorymethod
|
|
923
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IHubSectionAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.HubSection, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HubSectionAutomationPeer: ...
|
|
924
|
+
@winrt_mixinmethod
|
|
925
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
926
|
+
class HyperlinkButtonAutomationPeer(ComPtr):
|
|
927
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer
|
|
928
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IHyperlinkButtonAutomationPeer
|
|
929
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.HyperlinkButtonAutomationPeer'
|
|
930
|
+
def __init__(self, *args, **kwargs):
|
|
931
|
+
if kwargs:
|
|
932
|
+
super().__init__(**kwargs)
|
|
933
|
+
elif len(args) == 1:
|
|
934
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.HyperlinkButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
935
|
+
else:
|
|
936
|
+
raise ValueError('no matched constructor')
|
|
937
|
+
@winrt_factorymethod
|
|
938
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IHyperlinkButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.HyperlinkButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HyperlinkButtonAutomationPeer: ...
|
|
939
|
+
@winrt_mixinmethod
|
|
940
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
941
|
+
class IAnimatedVisualPlayerAutomationPeer(ComPtr):
|
|
942
|
+
extends: IInspectable
|
|
943
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAnimatedVisualPlayerAutomationPeer'
|
|
944
|
+
_iid_ = Guid('{f949eeb6-b3ea-58ad-b62b-b7255bcc04df}')
|
|
945
|
+
class IAnimatedVisualPlayerAutomationPeerFactory(ComPtr):
|
|
946
|
+
extends: IInspectable
|
|
947
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAnimatedVisualPlayerAutomationPeerFactory'
|
|
948
|
+
_iid_ = Guid('{d2a49198-80bb-51d6-b495-3dc5aab59589}')
|
|
949
|
+
@winrt_commethod(6)
|
|
950
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.AnimatedVisualPlayer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AnimatedVisualPlayerAutomationPeer: ...
|
|
951
|
+
class IAppBarAutomationPeer(ComPtr):
|
|
952
|
+
extends: IInspectable
|
|
953
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarAutomationPeer'
|
|
954
|
+
_iid_ = Guid('{883a52e2-1810-5f1a-a9fd-1db0f9c62b02}')
|
|
955
|
+
class IAppBarAutomationPeerFactory(ComPtr):
|
|
956
|
+
extends: IInspectable
|
|
957
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarAutomationPeerFactory'
|
|
958
|
+
_iid_ = Guid('{64f68ce4-ad2d-5c18-abc0-d0157cc63088}')
|
|
959
|
+
@winrt_commethod(6)
|
|
960
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.AppBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarAutomationPeer: ...
|
|
961
|
+
class IAppBarButtonAutomationPeer(ComPtr):
|
|
962
|
+
extends: IInspectable
|
|
963
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarButtonAutomationPeer'
|
|
964
|
+
_iid_ = Guid('{439efdb4-141b-5fff-8723-03e6e69f6b36}')
|
|
965
|
+
class IAppBarButtonAutomationPeerFactory(ComPtr):
|
|
966
|
+
extends: IInspectable
|
|
967
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarButtonAutomationPeerFactory'
|
|
968
|
+
_iid_ = Guid('{6f611433-7e50-5e2e-b192-d6a285962c74}')
|
|
969
|
+
@winrt_commethod(6)
|
|
970
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.AppBarButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarButtonAutomationPeer: ...
|
|
971
|
+
class IAppBarToggleButtonAutomationPeer(ComPtr):
|
|
972
|
+
extends: IInspectable
|
|
973
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarToggleButtonAutomationPeer'
|
|
974
|
+
_iid_ = Guid('{17d28eb5-4635-5e2d-af01-8dcd23a608c4}')
|
|
975
|
+
class IAppBarToggleButtonAutomationPeerFactory(ComPtr):
|
|
976
|
+
extends: IInspectable
|
|
977
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAppBarToggleButtonAutomationPeerFactory'
|
|
978
|
+
_iid_ = Guid('{3cb5ef43-ae92-5452-92e9-cd0ccca26891}')
|
|
979
|
+
@winrt_commethod(6)
|
|
980
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.AppBarToggleButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AppBarToggleButtonAutomationPeer: ...
|
|
981
|
+
class IAutoSuggestBoxAutomationPeer(ComPtr):
|
|
982
|
+
extends: IInspectable
|
|
983
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutoSuggestBoxAutomationPeer'
|
|
984
|
+
_iid_ = Guid('{695236fc-0021-5936-bdf9-ed5991db0d52}')
|
|
985
|
+
class IAutoSuggestBoxAutomationPeerFactory(ComPtr):
|
|
986
|
+
extends: IInspectable
|
|
987
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutoSuggestBoxAutomationPeerFactory'
|
|
988
|
+
_iid_ = Guid('{c30950c9-b682-56df-9cb2-de6786fb8f90}')
|
|
989
|
+
@winrt_commethod(6)
|
|
990
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.AutoSuggestBox) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutoSuggestBoxAutomationPeer: ...
|
|
991
|
+
class IAutomationPeer(ComPtr):
|
|
992
|
+
extends: IInspectable
|
|
993
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeer'
|
|
994
|
+
_iid_ = Guid('{e51d3e4e-34f0-568c-999f-6277e2afe6d7}')
|
|
995
|
+
@winrt_commethod(6)
|
|
996
|
+
def get_EventsSource(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
997
|
+
@winrt_commethod(7)
|
|
998
|
+
def put_EventsSource(self, value: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
999
|
+
@winrt_commethod(8)
|
|
1000
|
+
def GetPattern(self, patternInterface: win32more.Microsoft.UI.Xaml.Automation.Peers.PatternInterface) -> IInspectable: ...
|
|
1001
|
+
@winrt_commethod(9)
|
|
1002
|
+
def RaiseAutomationEvent(self, eventId: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationEvents) -> Void: ...
|
|
1003
|
+
@winrt_commethod(10)
|
|
1004
|
+
def RaisePropertyChangedEvent(self, automationProperty: win32more.Microsoft.UI.Xaml.Automation.AutomationProperty, oldValue: IInspectable, newValue: IInspectable) -> Void: ...
|
|
1005
|
+
@winrt_commethod(11)
|
|
1006
|
+
def GetAcceleratorKey(self) -> WinRT_String: ...
|
|
1007
|
+
@winrt_commethod(12)
|
|
1008
|
+
def GetAccessKey(self) -> WinRT_String: ...
|
|
1009
|
+
@winrt_commethod(13)
|
|
1010
|
+
def GetAutomationControlType(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationControlType: ...
|
|
1011
|
+
@winrt_commethod(14)
|
|
1012
|
+
def GetAutomationId(self) -> WinRT_String: ...
|
|
1013
|
+
@winrt_commethod(15)
|
|
1014
|
+
def GetBoundingRectangle(self) -> win32more.Windows.Foundation.Rect: ...
|
|
1015
|
+
@winrt_commethod(16)
|
|
1016
|
+
def GetChildren(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1017
|
+
@winrt_commethod(17)
|
|
1018
|
+
def Navigate(self, direction: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNavigationDirection) -> IInspectable: ...
|
|
1019
|
+
@winrt_commethod(18)
|
|
1020
|
+
def GetClassName(self) -> WinRT_String: ...
|
|
1021
|
+
@winrt_commethod(19)
|
|
1022
|
+
def GetClickablePoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1023
|
+
@winrt_commethod(20)
|
|
1024
|
+
def GetHelpText(self) -> WinRT_String: ...
|
|
1025
|
+
@winrt_commethod(21)
|
|
1026
|
+
def GetItemStatus(self) -> WinRT_String: ...
|
|
1027
|
+
@winrt_commethod(22)
|
|
1028
|
+
def GetItemType(self) -> WinRT_String: ...
|
|
1029
|
+
@winrt_commethod(23)
|
|
1030
|
+
def GetLabeledBy(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1031
|
+
@winrt_commethod(24)
|
|
1032
|
+
def GetLocalizedControlType(self) -> WinRT_String: ...
|
|
1033
|
+
@winrt_commethod(25)
|
|
1034
|
+
def GetName(self) -> WinRT_String: ...
|
|
1035
|
+
@winrt_commethod(26)
|
|
1036
|
+
def GetOrientation(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationOrientation: ...
|
|
1037
|
+
@winrt_commethod(27)
|
|
1038
|
+
def HasKeyboardFocus(self) -> Boolean: ...
|
|
1039
|
+
@winrt_commethod(28)
|
|
1040
|
+
def IsContentElement(self) -> Boolean: ...
|
|
1041
|
+
@winrt_commethod(29)
|
|
1042
|
+
def IsControlElement(self) -> Boolean: ...
|
|
1043
|
+
@winrt_commethod(30)
|
|
1044
|
+
def IsEnabled(self) -> Boolean: ...
|
|
1045
|
+
@winrt_commethod(31)
|
|
1046
|
+
def IsKeyboardFocusable(self) -> Boolean: ...
|
|
1047
|
+
@winrt_commethod(32)
|
|
1048
|
+
def IsOffscreen(self) -> Boolean: ...
|
|
1049
|
+
@winrt_commethod(33)
|
|
1050
|
+
def IsPassword(self) -> Boolean: ...
|
|
1051
|
+
@winrt_commethod(34)
|
|
1052
|
+
def IsRequiredForForm(self) -> Boolean: ...
|
|
1053
|
+
@winrt_commethod(35)
|
|
1054
|
+
def SetFocus(self) -> Void: ...
|
|
1055
|
+
@winrt_commethod(36)
|
|
1056
|
+
def GetParent(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1057
|
+
@winrt_commethod(37)
|
|
1058
|
+
def InvalidatePeer(self) -> Void: ...
|
|
1059
|
+
@winrt_commethod(38)
|
|
1060
|
+
def GetPeerFromPoint(self, point: win32more.Windows.Foundation.Point) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1061
|
+
@winrt_commethod(39)
|
|
1062
|
+
def GetElementFromPoint(self, pointInWindowCoordinates: win32more.Windows.Foundation.Point) -> IInspectable: ...
|
|
1063
|
+
@winrt_commethod(40)
|
|
1064
|
+
def GetFocusedElement(self) -> IInspectable: ...
|
|
1065
|
+
@winrt_commethod(41)
|
|
1066
|
+
def GetLiveSetting(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLiveSetting: ...
|
|
1067
|
+
@winrt_commethod(42)
|
|
1068
|
+
def ShowContextMenu(self) -> Void: ...
|
|
1069
|
+
@winrt_commethod(43)
|
|
1070
|
+
def GetControlledPeers(self) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1071
|
+
@winrt_commethod(44)
|
|
1072
|
+
def GetAnnotations(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation]: ...
|
|
1073
|
+
@winrt_commethod(45)
|
|
1074
|
+
def SetParent(self, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
1075
|
+
@winrt_commethod(46)
|
|
1076
|
+
def RaiseTextEditTextChangedEvent(self, automationTextEditChangeType: win32more.Microsoft.UI.Xaml.Automation.AutomationTextEditChangeType, changedData: win32more.Windows.Foundation.Collections.IVectorView[WinRT_String]) -> Void: ...
|
|
1077
|
+
@winrt_commethod(47)
|
|
1078
|
+
def GetPositionInSet(self) -> Int32: ...
|
|
1079
|
+
@winrt_commethod(48)
|
|
1080
|
+
def GetSizeOfSet(self) -> Int32: ...
|
|
1081
|
+
@winrt_commethod(49)
|
|
1082
|
+
def GetLevel(self) -> Int32: ...
|
|
1083
|
+
@winrt_commethod(50)
|
|
1084
|
+
def RaiseStructureChangedEvent(self, structureChangeType: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationStructureChangeType, child: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
1085
|
+
@winrt_commethod(51)
|
|
1086
|
+
def GetLandmarkType(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLandmarkType: ...
|
|
1087
|
+
@winrt_commethod(52)
|
|
1088
|
+
def GetLocalizedLandmarkType(self) -> WinRT_String: ...
|
|
1089
|
+
@winrt_commethod(53)
|
|
1090
|
+
def IsPeripheral(self) -> Boolean: ...
|
|
1091
|
+
@winrt_commethod(54)
|
|
1092
|
+
def IsDataValidForForm(self) -> Boolean: ...
|
|
1093
|
+
@winrt_commethod(55)
|
|
1094
|
+
def GetFullDescription(self) -> WinRT_String: ...
|
|
1095
|
+
@winrt_commethod(56)
|
|
1096
|
+
def GetCulture(self) -> Int32: ...
|
|
1097
|
+
@winrt_commethod(57)
|
|
1098
|
+
def RaiseNotificationEvent(self, notificationKind: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationKind, notificationProcessing: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNotificationProcessing, displayString: WinRT_String, activityId: WinRT_String) -> Void: ...
|
|
1099
|
+
@winrt_commethod(58)
|
|
1100
|
+
def GetHeadingLevel(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationHeadingLevel: ...
|
|
1101
|
+
@winrt_commethod(59)
|
|
1102
|
+
def IsDialog(self) -> Boolean: ...
|
|
1103
|
+
EventsSource = property(get_EventsSource, put_EventsSource)
|
|
1104
|
+
class IAutomationPeerAnnotation(ComPtr):
|
|
1105
|
+
extends: IInspectable
|
|
1106
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotation'
|
|
1107
|
+
_iid_ = Guid('{2738b92a-2528-5b63-973d-d29eb0593647}')
|
|
1108
|
+
@winrt_commethod(6)
|
|
1109
|
+
def get_Type(self) -> win32more.Microsoft.UI.Xaml.Automation.AnnotationType: ...
|
|
1110
|
+
@winrt_commethod(7)
|
|
1111
|
+
def put_Type(self, value: win32more.Microsoft.UI.Xaml.Automation.AnnotationType) -> Void: ...
|
|
1112
|
+
@winrt_commethod(8)
|
|
1113
|
+
def get_Peer(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1114
|
+
@winrt_commethod(9)
|
|
1115
|
+
def put_Peer(self, value: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> Void: ...
|
|
1116
|
+
Peer = property(get_Peer, put_Peer)
|
|
1117
|
+
Type = property(get_Type, put_Type)
|
|
1118
|
+
class IAutomationPeerAnnotationFactory(ComPtr):
|
|
1119
|
+
extends: IInspectable
|
|
1120
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationFactory'
|
|
1121
|
+
_iid_ = Guid('{25a1a202-bd68-5d41-a311-f84af9c8c440}')
|
|
1122
|
+
@winrt_commethod(6)
|
|
1123
|
+
def CreateInstance(self, type: win32more.Microsoft.UI.Xaml.Automation.AnnotationType) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation: ...
|
|
1124
|
+
@winrt_commethod(7)
|
|
1125
|
+
def CreateWithPeerParameter(self, type: win32more.Microsoft.UI.Xaml.Automation.AnnotationType, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation: ...
|
|
1126
|
+
class IAutomationPeerAnnotationStatics(ComPtr):
|
|
1127
|
+
extends: IInspectable
|
|
1128
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerAnnotationStatics'
|
|
1129
|
+
_iid_ = Guid('{c46105d7-8ca3-50e3-a1bc-b6bb2f9ce1cd}')
|
|
1130
|
+
@winrt_commethod(6)
|
|
1131
|
+
def get_TypeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1132
|
+
@winrt_commethod(7)
|
|
1133
|
+
def get_PeerProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1134
|
+
PeerProperty = property(get_PeerProperty, None)
|
|
1135
|
+
TypeProperty = property(get_TypeProperty, None)
|
|
1136
|
+
class IAutomationPeerFactory(ComPtr):
|
|
1137
|
+
extends: IInspectable
|
|
1138
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerFactory'
|
|
1139
|
+
_iid_ = Guid('{a1af86a0-6ec6-5be2-858f-72808be6fddd}')
|
|
1140
|
+
@winrt_commethod(6)
|
|
1141
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1142
|
+
class IAutomationPeerOverrides(ComPtr):
|
|
1143
|
+
extends: IInspectable
|
|
1144
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerOverrides'
|
|
1145
|
+
_iid_ = Guid('{44f8f6df-1b60-512d-a295-dd8c276c4618}')
|
|
1146
|
+
@winrt_commethod(6)
|
|
1147
|
+
def GetPatternCore(self, patternInterface: win32more.Microsoft.UI.Xaml.Automation.Peers.PatternInterface) -> IInspectable: ...
|
|
1148
|
+
@winrt_commethod(7)
|
|
1149
|
+
def GetAcceleratorKeyCore(self) -> WinRT_String: ...
|
|
1150
|
+
@winrt_commethod(8)
|
|
1151
|
+
def GetAccessKeyCore(self) -> WinRT_String: ...
|
|
1152
|
+
@winrt_commethod(9)
|
|
1153
|
+
def GetAutomationControlTypeCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationControlType: ...
|
|
1154
|
+
@winrt_commethod(10)
|
|
1155
|
+
def GetAutomationIdCore(self) -> WinRT_String: ...
|
|
1156
|
+
@winrt_commethod(11)
|
|
1157
|
+
def GetBoundingRectangleCore(self) -> win32more.Windows.Foundation.Rect: ...
|
|
1158
|
+
@winrt_commethod(12)
|
|
1159
|
+
def GetChildrenCore(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1160
|
+
@winrt_commethod(13)
|
|
1161
|
+
def NavigateCore(self, direction: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationNavigationDirection) -> IInspectable: ...
|
|
1162
|
+
@winrt_commethod(14)
|
|
1163
|
+
def GetClassNameCore(self) -> WinRT_String: ...
|
|
1164
|
+
@winrt_commethod(15)
|
|
1165
|
+
def GetClickablePointCore(self) -> win32more.Windows.Foundation.Point: ...
|
|
1166
|
+
@winrt_commethod(16)
|
|
1167
|
+
def GetHelpTextCore(self) -> WinRT_String: ...
|
|
1168
|
+
@winrt_commethod(17)
|
|
1169
|
+
def GetItemStatusCore(self) -> WinRT_String: ...
|
|
1170
|
+
@winrt_commethod(18)
|
|
1171
|
+
def GetItemTypeCore(self) -> WinRT_String: ...
|
|
1172
|
+
@winrt_commethod(19)
|
|
1173
|
+
def GetLabeledByCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1174
|
+
@winrt_commethod(20)
|
|
1175
|
+
def GetLocalizedControlTypeCore(self) -> WinRT_String: ...
|
|
1176
|
+
@winrt_commethod(21)
|
|
1177
|
+
def GetNameCore(self) -> WinRT_String: ...
|
|
1178
|
+
@winrt_commethod(22)
|
|
1179
|
+
def GetOrientationCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationOrientation: ...
|
|
1180
|
+
@winrt_commethod(23)
|
|
1181
|
+
def HasKeyboardFocusCore(self) -> Boolean: ...
|
|
1182
|
+
@winrt_commethod(24)
|
|
1183
|
+
def IsContentElementCore(self) -> Boolean: ...
|
|
1184
|
+
@winrt_commethod(25)
|
|
1185
|
+
def IsControlElementCore(self) -> Boolean: ...
|
|
1186
|
+
@winrt_commethod(26)
|
|
1187
|
+
def IsEnabledCore(self) -> Boolean: ...
|
|
1188
|
+
@winrt_commethod(27)
|
|
1189
|
+
def IsKeyboardFocusableCore(self) -> Boolean: ...
|
|
1190
|
+
@winrt_commethod(28)
|
|
1191
|
+
def IsOffscreenCore(self) -> Boolean: ...
|
|
1192
|
+
@winrt_commethod(29)
|
|
1193
|
+
def IsPasswordCore(self) -> Boolean: ...
|
|
1194
|
+
@winrt_commethod(30)
|
|
1195
|
+
def IsRequiredForFormCore(self) -> Boolean: ...
|
|
1196
|
+
@winrt_commethod(31)
|
|
1197
|
+
def SetFocusCore(self) -> Void: ...
|
|
1198
|
+
@winrt_commethod(32)
|
|
1199
|
+
def GetPeerFromPointCore(self, point: win32more.Windows.Foundation.Point) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1200
|
+
@winrt_commethod(33)
|
|
1201
|
+
def GetElementFromPointCore(self, pointInWindowCoordinates: win32more.Windows.Foundation.Point) -> IInspectable: ...
|
|
1202
|
+
@winrt_commethod(34)
|
|
1203
|
+
def GetFocusedElementCore(self) -> IInspectable: ...
|
|
1204
|
+
@winrt_commethod(35)
|
|
1205
|
+
def GetLiveSettingCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLiveSetting: ...
|
|
1206
|
+
@winrt_commethod(36)
|
|
1207
|
+
def ShowContextMenuCore(self) -> Void: ...
|
|
1208
|
+
@winrt_commethod(37)
|
|
1209
|
+
def GetControlledPeersCore(self) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1210
|
+
@winrt_commethod(38)
|
|
1211
|
+
def GetAnnotationsCore(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeerAnnotation]: ...
|
|
1212
|
+
@winrt_commethod(39)
|
|
1213
|
+
def GetPositionInSetCore(self) -> Int32: ...
|
|
1214
|
+
@winrt_commethod(40)
|
|
1215
|
+
def GetSizeOfSetCore(self) -> Int32: ...
|
|
1216
|
+
@winrt_commethod(41)
|
|
1217
|
+
def GetLevelCore(self) -> Int32: ...
|
|
1218
|
+
@winrt_commethod(42)
|
|
1219
|
+
def GetLandmarkTypeCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationLandmarkType: ...
|
|
1220
|
+
@winrt_commethod(43)
|
|
1221
|
+
def GetLocalizedLandmarkTypeCore(self) -> WinRT_String: ...
|
|
1222
|
+
@winrt_commethod(44)
|
|
1223
|
+
def IsPeripheralCore(self) -> Boolean: ...
|
|
1224
|
+
@winrt_commethod(45)
|
|
1225
|
+
def IsDataValidForFormCore(self) -> Boolean: ...
|
|
1226
|
+
@winrt_commethod(46)
|
|
1227
|
+
def GetFullDescriptionCore(self) -> WinRT_String: ...
|
|
1228
|
+
@winrt_commethod(47)
|
|
1229
|
+
def GetDescribedByCore(self) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1230
|
+
@winrt_commethod(48)
|
|
1231
|
+
def GetFlowsToCore(self) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1232
|
+
@winrt_commethod(49)
|
|
1233
|
+
def GetFlowsFromCore(self) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer]: ...
|
|
1234
|
+
@winrt_commethod(50)
|
|
1235
|
+
def GetCultureCore(self) -> Int32: ...
|
|
1236
|
+
@winrt_commethod(51)
|
|
1237
|
+
def GetHeadingLevelCore(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationHeadingLevel: ...
|
|
1238
|
+
@winrt_commethod(52)
|
|
1239
|
+
def IsDialogCore(self) -> Boolean: ...
|
|
1240
|
+
class IAutomationPeerProtected(ComPtr):
|
|
1241
|
+
extends: IInspectable
|
|
1242
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerProtected'
|
|
1243
|
+
_iid_ = Guid('{9663b2c3-8c1f-56d4-abd9-268082a9e8bc}')
|
|
1244
|
+
@winrt_commethod(6)
|
|
1245
|
+
def PeerFromProvider(self, provider: win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1246
|
+
@winrt_commethod(7)
|
|
1247
|
+
def ProviderFromPeer(self, peer: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
1248
|
+
class IAutomationPeerStatics(ComPtr):
|
|
1249
|
+
extends: IInspectable
|
|
1250
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IAutomationPeerStatics'
|
|
1251
|
+
_iid_ = Guid('{90b157ff-18d5-5623-850c-612ceae576bd}')
|
|
1252
|
+
@winrt_commethod(6)
|
|
1253
|
+
def ListenerExists(self, eventId: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationEvents) -> Boolean: ...
|
|
1254
|
+
@winrt_commethod(7)
|
|
1255
|
+
def GenerateRawElementProviderRuntimeId(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RawElementProviderRuntimeId: ...
|
|
1256
|
+
class IBreadcrumbBarItemAutomationPeer(ComPtr):
|
|
1257
|
+
extends: IInspectable
|
|
1258
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IBreadcrumbBarItemAutomationPeer'
|
|
1259
|
+
_iid_ = Guid('{48e81612-7de0-5065-b881-04ebfff90497}')
|
|
1260
|
+
class IBreadcrumbBarItemAutomationPeerFactory(ComPtr):
|
|
1261
|
+
extends: IInspectable
|
|
1262
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IBreadcrumbBarItemAutomationPeerFactory'
|
|
1263
|
+
_iid_ = Guid('{dfb02146-405f-52ed-a873-0ed4942850be}')
|
|
1264
|
+
@winrt_commethod(6)
|
|
1265
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.BreadcrumbBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.BreadcrumbBarItemAutomationPeer: ...
|
|
1266
|
+
class IButtonAutomationPeer(ComPtr):
|
|
1267
|
+
extends: IInspectable
|
|
1268
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IButtonAutomationPeer'
|
|
1269
|
+
_iid_ = Guid('{a3a2e96b-8a2d-50bf-9b3d-dfbc4653f5a6}')
|
|
1270
|
+
class IButtonAutomationPeerFactory(ComPtr):
|
|
1271
|
+
extends: IInspectable
|
|
1272
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IButtonAutomationPeerFactory'
|
|
1273
|
+
_iid_ = Guid('{1c2f87b7-fbc1-56b0-a654-550d61c423d1}')
|
|
1274
|
+
@winrt_commethod(6)
|
|
1275
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Button, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonAutomationPeer: ...
|
|
1276
|
+
class IButtonBaseAutomationPeer(ComPtr):
|
|
1277
|
+
extends: IInspectable
|
|
1278
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IButtonBaseAutomationPeer'
|
|
1279
|
+
_iid_ = Guid('{7a88a2d8-f8dd-5526-8a40-e2e3888193bf}')
|
|
1280
|
+
class IButtonBaseAutomationPeerFactory(ComPtr):
|
|
1281
|
+
extends: IInspectable
|
|
1282
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IButtonBaseAutomationPeerFactory'
|
|
1283
|
+
_iid_ = Guid('{d6e707bb-7299-5f7a-9c03-7fa10f939771}')
|
|
1284
|
+
@winrt_commethod(6)
|
|
1285
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ButtonBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer: ...
|
|
1286
|
+
class ICalendarDatePickerAutomationPeer(ComPtr):
|
|
1287
|
+
extends: IInspectable
|
|
1288
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ICalendarDatePickerAutomationPeer'
|
|
1289
|
+
_iid_ = Guid('{246d63e3-812f-5f28-8d18-af79409a4f95}')
|
|
1290
|
+
class ICalendarDatePickerAutomationPeerFactory(ComPtr):
|
|
1291
|
+
extends: IInspectable
|
|
1292
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ICalendarDatePickerAutomationPeerFactory'
|
|
1293
|
+
_iid_ = Guid('{6d272c12-68a3-586e-879b-571e606803b4}')
|
|
1294
|
+
@winrt_commethod(6)
|
|
1295
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.CalendarDatePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.CalendarDatePickerAutomationPeer: ...
|
|
1296
|
+
class ICheckBoxAutomationPeer(ComPtr):
|
|
1297
|
+
extends: IInspectable
|
|
1298
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ICheckBoxAutomationPeer'
|
|
1299
|
+
_iid_ = Guid('{9b449814-2c1a-5bdc-9524-1df91c06e992}')
|
|
1300
|
+
class ICheckBoxAutomationPeerFactory(ComPtr):
|
|
1301
|
+
extends: IInspectable
|
|
1302
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ICheckBoxAutomationPeerFactory'
|
|
1303
|
+
_iid_ = Guid('{0f5b9e3c-6de5-588e-835f-3228be930fea}')
|
|
1304
|
+
@winrt_commethod(6)
|
|
1305
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.CheckBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.CheckBoxAutomationPeer: ...
|
|
1306
|
+
class IColorPickerSliderAutomationPeer(ComPtr):
|
|
1307
|
+
extends: IInspectable
|
|
1308
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IColorPickerSliderAutomationPeer'
|
|
1309
|
+
_iid_ = Guid('{793d35d4-4152-50fa-b5f4-f6c045c1339d}')
|
|
1310
|
+
class IColorPickerSliderAutomationPeerFactory(ComPtr):
|
|
1311
|
+
extends: IInspectable
|
|
1312
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IColorPickerSliderAutomationPeerFactory'
|
|
1313
|
+
_iid_ = Guid('{e5f9093f-5e2c-5148-b5d1-1cda4eb86913}')
|
|
1314
|
+
@winrt_commethod(6)
|
|
1315
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ColorPickerSlider, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ColorPickerSliderAutomationPeer: ...
|
|
1316
|
+
class IColorSpectrumAutomationPeer(ComPtr):
|
|
1317
|
+
extends: IInspectable
|
|
1318
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IColorSpectrumAutomationPeer'
|
|
1319
|
+
_iid_ = Guid('{005ac3d1-b031-58ab-918d-030fabaeaf87}')
|
|
1320
|
+
class IColorSpectrumAutomationPeerFactory(ComPtr):
|
|
1321
|
+
extends: IInspectable
|
|
1322
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IColorSpectrumAutomationPeerFactory'
|
|
1323
|
+
_iid_ = Guid('{cfccae7e-fe0f-5c9c-9d1a-69e20e0232cf}')
|
|
1324
|
+
@winrt_commethod(6)
|
|
1325
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ColorSpectrum, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ColorSpectrumAutomationPeer: ...
|
|
1326
|
+
class IComboBoxAutomationPeer(ComPtr):
|
|
1327
|
+
extends: IInspectable
|
|
1328
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxAutomationPeer'
|
|
1329
|
+
_iid_ = Guid('{459d2245-1fd2-5dda-822c-bed13df6776b}')
|
|
1330
|
+
class IComboBoxAutomationPeerFactory(ComPtr):
|
|
1331
|
+
extends: IInspectable
|
|
1332
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxAutomationPeerFactory'
|
|
1333
|
+
_iid_ = Guid('{d094829f-2a6f-5b1f-a0ce-0f682cc56c0f}')
|
|
1334
|
+
@winrt_commethod(6)
|
|
1335
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ComboBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer: ...
|
|
1336
|
+
class IComboBoxItemAutomationPeer(ComPtr):
|
|
1337
|
+
extends: IInspectable
|
|
1338
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemAutomationPeer'
|
|
1339
|
+
_iid_ = Guid('{3d4195bc-b579-5cda-b56f-1e7399e14122}')
|
|
1340
|
+
class IComboBoxItemAutomationPeerFactory(ComPtr):
|
|
1341
|
+
extends: IInspectable
|
|
1342
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemAutomationPeerFactory'
|
|
1343
|
+
_iid_ = Guid('{ead9d22d-112b-550e-8cac-760614f979aa}')
|
|
1344
|
+
@winrt_commethod(6)
|
|
1345
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ComboBoxItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemAutomationPeer: ...
|
|
1346
|
+
class IComboBoxItemDataAutomationPeer(ComPtr):
|
|
1347
|
+
extends: IInspectable
|
|
1348
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemDataAutomationPeer'
|
|
1349
|
+
_iid_ = Guid('{65b69b50-cbc3-5ae7-bf9c-2794fe56c6b3}')
|
|
1350
|
+
class IComboBoxItemDataAutomationPeerFactory(ComPtr):
|
|
1351
|
+
extends: IInspectable
|
|
1352
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IComboBoxItemDataAutomationPeerFactory'
|
|
1353
|
+
_iid_ = Guid('{66778718-8757-56d5-bd3a-f2ff40e83a78}')
|
|
1354
|
+
@winrt_commethod(6)
|
|
1355
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ComboBoxItemDataAutomationPeer: ...
|
|
1356
|
+
class IDatePickerAutomationPeer(ComPtr):
|
|
1357
|
+
extends: IInspectable
|
|
1358
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IDatePickerAutomationPeer'
|
|
1359
|
+
_iid_ = Guid('{f3d7c3e5-c817-58a5-bb47-d9eb228f3ba0}')
|
|
1360
|
+
class IDatePickerAutomationPeerFactory(ComPtr):
|
|
1361
|
+
extends: IInspectable
|
|
1362
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IDatePickerAutomationPeerFactory'
|
|
1363
|
+
_iid_ = Guid('{480f7825-b4a7-5c56-9f8a-fed84b9348ae}')
|
|
1364
|
+
@winrt_commethod(6)
|
|
1365
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.DatePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.DatePickerAutomationPeer: ...
|
|
1366
|
+
class IDatePickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
1367
|
+
extends: IInspectable
|
|
1368
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IDatePickerFlyoutPresenterAutomationPeer'
|
|
1369
|
+
_iid_ = Guid('{600b7162-0529-5fd1-b6e4-41dc37eda513}')
|
|
1370
|
+
class IDropDownButtonAutomationPeer(ComPtr):
|
|
1371
|
+
extends: IInspectable
|
|
1372
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IDropDownButtonAutomationPeer'
|
|
1373
|
+
_iid_ = Guid('{7dc37dec-0a0a-5c98-8a6f-9e47dbab2f82}')
|
|
1374
|
+
class IDropDownButtonAutomationPeerFactory(ComPtr):
|
|
1375
|
+
extends: IInspectable
|
|
1376
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IDropDownButtonAutomationPeerFactory'
|
|
1377
|
+
_iid_ = Guid('{68c4bffa-1685-5936-b219-517e87fd591f}')
|
|
1378
|
+
@winrt_commethod(6)
|
|
1379
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.DropDownButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.DropDownButtonAutomationPeer: ...
|
|
1380
|
+
class IExpanderAutomationPeer(ComPtr):
|
|
1381
|
+
extends: IInspectable
|
|
1382
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IExpanderAutomationPeer'
|
|
1383
|
+
_iid_ = Guid('{f7527408-cc89-5b65-bbde-eae6d66dc3e5}')
|
|
1384
|
+
class IExpanderAutomationPeerFactory(ComPtr):
|
|
1385
|
+
extends: IInspectable
|
|
1386
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IExpanderAutomationPeerFactory'
|
|
1387
|
+
_iid_ = Guid('{2024523b-4a40-5976-aaab-0f05664f7494}')
|
|
1388
|
+
@winrt_commethod(6)
|
|
1389
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.Expander, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ExpanderAutomationPeer: ...
|
|
1390
|
+
class IFlipViewAutomationPeer(ComPtr):
|
|
1391
|
+
extends: IInspectable
|
|
1392
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewAutomationPeer'
|
|
1393
|
+
_iid_ = Guid('{9f2901ea-23cb-5cac-87d4-7fa9c7ffbc60}')
|
|
1394
|
+
class IFlipViewAutomationPeerFactory(ComPtr):
|
|
1395
|
+
extends: IInspectable
|
|
1396
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewAutomationPeerFactory'
|
|
1397
|
+
_iid_ = Guid('{e73c7f75-ed47-522a-8a27-45feda1031f0}')
|
|
1398
|
+
@winrt_commethod(6)
|
|
1399
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.FlipView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer: ...
|
|
1400
|
+
class IFlipViewItemAutomationPeer(ComPtr):
|
|
1401
|
+
extends: IInspectable
|
|
1402
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemAutomationPeer'
|
|
1403
|
+
_iid_ = Guid('{3569b1bb-7601-56de-812a-171455d8ad32}')
|
|
1404
|
+
class IFlipViewItemAutomationPeerFactory(ComPtr):
|
|
1405
|
+
extends: IInspectable
|
|
1406
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemAutomationPeerFactory'
|
|
1407
|
+
_iid_ = Guid('{aa3b880f-62cb-5878-8f0b-7b3548c65080}')
|
|
1408
|
+
@winrt_commethod(6)
|
|
1409
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.FlipViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemAutomationPeer: ...
|
|
1410
|
+
class IFlipViewItemDataAutomationPeer(ComPtr):
|
|
1411
|
+
extends: IInspectable
|
|
1412
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemDataAutomationPeer'
|
|
1413
|
+
_iid_ = Guid('{3bb31a93-e737-501d-b9a6-a11461c9bcf5}')
|
|
1414
|
+
class IFlipViewItemDataAutomationPeerFactory(ComPtr):
|
|
1415
|
+
extends: IInspectable
|
|
1416
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlipViewItemDataAutomationPeerFactory'
|
|
1417
|
+
_iid_ = Guid('{6f892ace-4467-587c-953c-c1c13b632e5f}')
|
|
1418
|
+
@winrt_commethod(6)
|
|
1419
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlipViewItemDataAutomationPeer: ...
|
|
1420
|
+
class IFlyoutPresenterAutomationPeer(ComPtr):
|
|
1421
|
+
extends: IInspectable
|
|
1422
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlyoutPresenterAutomationPeer'
|
|
1423
|
+
_iid_ = Guid('{e589b818-4a64-58c5-9c0b-5cea0f867e9b}')
|
|
1424
|
+
class IFlyoutPresenterAutomationPeerFactory(ComPtr):
|
|
1425
|
+
extends: IInspectable
|
|
1426
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFlyoutPresenterAutomationPeerFactory'
|
|
1427
|
+
_iid_ = Guid('{e529e586-7aa3-50a6-b17e-678b54fee127}')
|
|
1428
|
+
@winrt_commethod(6)
|
|
1429
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.FlyoutPresenter, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FlyoutPresenterAutomationPeer: ...
|
|
1430
|
+
class IFrameworkElementAutomationPeer(ComPtr):
|
|
1431
|
+
extends: IInspectable
|
|
1432
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeer'
|
|
1433
|
+
_iid_ = Guid('{7dab4f24-605c-51cb-87db-3eed1b9fb37b}')
|
|
1434
|
+
@winrt_commethod(6)
|
|
1435
|
+
def get_Owner(self) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
1436
|
+
Owner = property(get_Owner, None)
|
|
1437
|
+
class IFrameworkElementAutomationPeerFactory(ComPtr):
|
|
1438
|
+
extends: IInspectable
|
|
1439
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeerFactory'
|
|
1440
|
+
_iid_ = Guid('{1682c3f8-238d-5c7e-a5a5-08cc3c10ac7c}')
|
|
1441
|
+
@winrt_commethod(6)
|
|
1442
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.FrameworkElement, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer: ...
|
|
1443
|
+
class IFrameworkElementAutomationPeerStatics(ComPtr):
|
|
1444
|
+
extends: IInspectable
|
|
1445
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IFrameworkElementAutomationPeerStatics'
|
|
1446
|
+
_iid_ = Guid('{081f6fbe-6500-528a-a506-f5a4d41ddf6c}')
|
|
1447
|
+
@winrt_commethod(6)
|
|
1448
|
+
def FromElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1449
|
+
@winrt_commethod(7)
|
|
1450
|
+
def CreatePeerForElement(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer: ...
|
|
1451
|
+
class IGridViewAutomationPeer(ComPtr):
|
|
1452
|
+
extends: IInspectable
|
|
1453
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewAutomationPeer'
|
|
1454
|
+
_iid_ = Guid('{7870992f-3328-53c2-b412-2914438975b4}')
|
|
1455
|
+
class IGridViewAutomationPeerFactory(ComPtr):
|
|
1456
|
+
extends: IInspectable
|
|
1457
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewAutomationPeerFactory'
|
|
1458
|
+
_iid_ = Guid('{71b829e1-7d57-580b-b1a6-d780ed992248}')
|
|
1459
|
+
@winrt_commethod(6)
|
|
1460
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.GridView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer: ...
|
|
1461
|
+
class IGridViewHeaderItemAutomationPeer(ComPtr):
|
|
1462
|
+
extends: IInspectable
|
|
1463
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewHeaderItemAutomationPeer'
|
|
1464
|
+
_iid_ = Guid('{c38af4b0-2757-569b-bdc7-a5b7b74ffdba}')
|
|
1465
|
+
class IGridViewHeaderItemAutomationPeerFactory(ComPtr):
|
|
1466
|
+
extends: IInspectable
|
|
1467
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewHeaderItemAutomationPeerFactory'
|
|
1468
|
+
_iid_ = Guid('{6161999a-e042-5d9b-aa38-9fe1296bfb01}')
|
|
1469
|
+
@winrt_commethod(6)
|
|
1470
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.GridViewHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewHeaderItemAutomationPeer: ...
|
|
1471
|
+
class IGridViewItemAutomationPeer(ComPtr):
|
|
1472
|
+
extends: IInspectable
|
|
1473
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewItemAutomationPeer'
|
|
1474
|
+
_iid_ = Guid('{de249c2e-5419-5798-b625-cd2c05307572}')
|
|
1475
|
+
class IGridViewItemAutomationPeerFactory(ComPtr):
|
|
1476
|
+
extends: IInspectable
|
|
1477
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewItemAutomationPeerFactory'
|
|
1478
|
+
_iid_ = Guid('{04735951-0f91-53f5-984b-75bf0ed41540}')
|
|
1479
|
+
@winrt_commethod(6)
|
|
1480
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.GridViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemAutomationPeer: ...
|
|
1481
|
+
class IGridViewItemDataAutomationPeer(ComPtr):
|
|
1482
|
+
extends: IInspectable
|
|
1483
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewItemDataAutomationPeer'
|
|
1484
|
+
_iid_ = Guid('{0372c2a0-5094-5811-96ba-0dbe77187435}')
|
|
1485
|
+
class IGridViewItemDataAutomationPeerFactory(ComPtr):
|
|
1486
|
+
extends: IInspectable
|
|
1487
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGridViewItemDataAutomationPeerFactory'
|
|
1488
|
+
_iid_ = Guid('{44137b3e-c6f3-53ce-915d-fc8e60ccee74}')
|
|
1489
|
+
@winrt_commethod(6)
|
|
1490
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GridViewItemDataAutomationPeer: ...
|
|
1491
|
+
class IGroupItemAutomationPeer(ComPtr):
|
|
1492
|
+
extends: IInspectable
|
|
1493
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGroupItemAutomationPeer'
|
|
1494
|
+
_iid_ = Guid('{2ff50701-4164-511d-bb23-d21eb88d5eb9}')
|
|
1495
|
+
class IGroupItemAutomationPeerFactory(ComPtr):
|
|
1496
|
+
extends: IInspectable
|
|
1497
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IGroupItemAutomationPeerFactory'
|
|
1498
|
+
_iid_ = Guid('{cdb10ed9-d1d3-5faa-8772-70014da666b3}')
|
|
1499
|
+
@winrt_commethod(6)
|
|
1500
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.GroupItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.GroupItemAutomationPeer: ...
|
|
1501
|
+
class IHubAutomationPeer(ComPtr):
|
|
1502
|
+
extends: IInspectable
|
|
1503
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHubAutomationPeer'
|
|
1504
|
+
_iid_ = Guid('{8fa20cb6-42c1-531e-b54f-fcaf33c943a9}')
|
|
1505
|
+
class IHubAutomationPeerFactory(ComPtr):
|
|
1506
|
+
extends: IInspectable
|
|
1507
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHubAutomationPeerFactory'
|
|
1508
|
+
_iid_ = Guid('{c1b1f1cf-3926-56c9-b690-530c8bc78806}')
|
|
1509
|
+
@winrt_commethod(6)
|
|
1510
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Hub, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HubAutomationPeer: ...
|
|
1511
|
+
class IHubSectionAutomationPeer(ComPtr):
|
|
1512
|
+
extends: IInspectable
|
|
1513
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHubSectionAutomationPeer'
|
|
1514
|
+
_iid_ = Guid('{174e94ab-c033-534a-895c-eaaf1dcc4352}')
|
|
1515
|
+
class IHubSectionAutomationPeerFactory(ComPtr):
|
|
1516
|
+
extends: IInspectable
|
|
1517
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHubSectionAutomationPeerFactory'
|
|
1518
|
+
_iid_ = Guid('{dc56cf08-2031-56b6-9ad5-7f8d7475d35d}')
|
|
1519
|
+
@winrt_commethod(6)
|
|
1520
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.HubSection, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HubSectionAutomationPeer: ...
|
|
1521
|
+
class IHyperlinkButtonAutomationPeer(ComPtr):
|
|
1522
|
+
extends: IInspectable
|
|
1523
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHyperlinkButtonAutomationPeer'
|
|
1524
|
+
_iid_ = Guid('{6a770ab2-02d0-59ba-a28e-3dfba1f10dd8}')
|
|
1525
|
+
class IHyperlinkButtonAutomationPeerFactory(ComPtr):
|
|
1526
|
+
extends: IInspectable
|
|
1527
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IHyperlinkButtonAutomationPeerFactory'
|
|
1528
|
+
_iid_ = Guid('{2476e661-abce-5d35-b38b-6cee2c4148f4}')
|
|
1529
|
+
@winrt_commethod(6)
|
|
1530
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.HyperlinkButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.HyperlinkButtonAutomationPeer: ...
|
|
1531
|
+
class IImageAutomationPeer(ComPtr):
|
|
1532
|
+
extends: IInspectable
|
|
1533
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IImageAutomationPeer'
|
|
1534
|
+
_iid_ = Guid('{1f6eb184-8765-5455-bd1d-93c251c17f9b}')
|
|
1535
|
+
class IImageAutomationPeerFactory(ComPtr):
|
|
1536
|
+
extends: IInspectable
|
|
1537
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IImageAutomationPeerFactory'
|
|
1538
|
+
_iid_ = Guid('{1b26001b-49a6-5ff4-b1b1-2d504d2ef133}')
|
|
1539
|
+
@winrt_commethod(6)
|
|
1540
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Image, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ImageAutomationPeer: ...
|
|
1541
|
+
class IInfoBarAutomationPeer(ComPtr):
|
|
1542
|
+
extends: IInspectable
|
|
1543
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IInfoBarAutomationPeer'
|
|
1544
|
+
_iid_ = Guid('{aa2c40eb-df80-5050-92c5-5fda5abfdef2}')
|
|
1545
|
+
class IInfoBarAutomationPeerFactory(ComPtr):
|
|
1546
|
+
extends: IInspectable
|
|
1547
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IInfoBarAutomationPeerFactory'
|
|
1548
|
+
_iid_ = Guid('{5fd3e590-68b9-5c9c-a572-0bc10167ce46}')
|
|
1549
|
+
@winrt_commethod(6)
|
|
1550
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.InfoBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.InfoBarAutomationPeer: ...
|
|
1551
|
+
class IItemAutomationPeer(ComPtr):
|
|
1552
|
+
extends: IInspectable
|
|
1553
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeer'
|
|
1554
|
+
_iid_ = Guid('{be8a71bb-3e36-54d2-920e-60722f1c62ff}')
|
|
1555
|
+
@winrt_commethod(6)
|
|
1556
|
+
def get_Item(self) -> IInspectable: ...
|
|
1557
|
+
@winrt_commethod(7)
|
|
1558
|
+
def get_ItemsControlAutomationPeer(self) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer: ...
|
|
1559
|
+
Item = property(get_Item, None)
|
|
1560
|
+
ItemsControlAutomationPeer = property(get_ItemsControlAutomationPeer, None)
|
|
1561
|
+
class IItemAutomationPeerFactory(ComPtr):
|
|
1562
|
+
extends: IInspectable
|
|
1563
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeerFactory'
|
|
1564
|
+
_iid_ = Guid('{ffe08885-14ac-5859-b031-5f3a4c504e6d}')
|
|
1565
|
+
@winrt_commethod(6)
|
|
1566
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
1567
|
+
class IItemContainerAutomationPeer(ComPtr):
|
|
1568
|
+
extends: IInspectable
|
|
1569
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemContainerAutomationPeer'
|
|
1570
|
+
_iid_ = Guid('{f915a1fb-754e-58c7-ad2a-b99528701793}')
|
|
1571
|
+
class IItemContainerAutomationPeerFactory(ComPtr):
|
|
1572
|
+
extends: IInspectable
|
|
1573
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemContainerAutomationPeerFactory'
|
|
1574
|
+
_iid_ = Guid('{4600cfb3-72e1-5181-95ec-653f30b01c78}')
|
|
1575
|
+
@winrt_commethod(6)
|
|
1576
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ItemContainer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemContainerAutomationPeer: ...
|
|
1577
|
+
class IItemsControlAutomationPeer(ComPtr):
|
|
1578
|
+
extends: IInspectable
|
|
1579
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeer'
|
|
1580
|
+
_iid_ = Guid('{0ae7bb7e-1407-5947-985f-9d542f433ab1}')
|
|
1581
|
+
@winrt_commethod(6)
|
|
1582
|
+
def CreateItemAutomationPeer(self, item: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
1583
|
+
class IItemsControlAutomationPeerFactory(ComPtr):
|
|
1584
|
+
extends: IInspectable
|
|
1585
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeerFactory'
|
|
1586
|
+
_iid_ = Guid('{9de524cc-5e66-51a0-a7e0-a1742d28334b}')
|
|
1587
|
+
@winrt_commethod(6)
|
|
1588
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsControl, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer: ...
|
|
1589
|
+
class IItemsControlAutomationPeerOverrides(ComPtr):
|
|
1590
|
+
extends: IInspectable
|
|
1591
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeerOverrides'
|
|
1592
|
+
_iid_ = Guid('{d751b35b-236e-5859-a834-52fa369cd3bd}')
|
|
1593
|
+
@winrt_commethod(6)
|
|
1594
|
+
def OnCreateItemAutomationPeer(self, item: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
1595
|
+
class IItemsViewAutomationPeer(ComPtr):
|
|
1596
|
+
extends: IInspectable
|
|
1597
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemsViewAutomationPeer'
|
|
1598
|
+
_iid_ = Guid('{d456ad6d-18d5-51ae-a44e-95671f848184}')
|
|
1599
|
+
class IItemsViewAutomationPeerFactory(ComPtr):
|
|
1600
|
+
extends: IInspectable
|
|
1601
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IItemsViewAutomationPeerFactory'
|
|
1602
|
+
_iid_ = Guid('{8fd329c7-ea9c-56a3-a79e-bfff5ca74323}')
|
|
1603
|
+
@winrt_commethod(6)
|
|
1604
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsViewAutomationPeer: ...
|
|
1605
|
+
class IListBoxAutomationPeer(ComPtr):
|
|
1606
|
+
extends: IInspectable
|
|
1607
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxAutomationPeer'
|
|
1608
|
+
_iid_ = Guid('{2bc1ca3f-3617-53a8-94b9-bec91d573525}')
|
|
1609
|
+
class IListBoxAutomationPeerFactory(ComPtr):
|
|
1610
|
+
extends: IInspectable
|
|
1611
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxAutomationPeerFactory'
|
|
1612
|
+
_iid_ = Guid('{004aaf6f-a12c-5fa4-a1f7-e3b0fbe45ddd}')
|
|
1613
|
+
@winrt_commethod(6)
|
|
1614
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer: ...
|
|
1615
|
+
class IListBoxItemAutomationPeer(ComPtr):
|
|
1616
|
+
extends: IInspectable
|
|
1617
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxItemAutomationPeer'
|
|
1618
|
+
_iid_ = Guid('{19a8c4b4-e63a-5b2e-8e2f-c834e6a08204}')
|
|
1619
|
+
class IListBoxItemAutomationPeerFactory(ComPtr):
|
|
1620
|
+
extends: IInspectable
|
|
1621
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxItemAutomationPeerFactory'
|
|
1622
|
+
_iid_ = Guid('{936e36ef-0fae-58a2-8fb2-313999793263}')
|
|
1623
|
+
@winrt_commethod(6)
|
|
1624
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListBoxItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemAutomationPeer: ...
|
|
1625
|
+
class IListBoxItemDataAutomationPeer(ComPtr):
|
|
1626
|
+
extends: IInspectable
|
|
1627
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxItemDataAutomationPeer'
|
|
1628
|
+
_iid_ = Guid('{2b81660f-46dc-5765-b10a-2269d12eba42}')
|
|
1629
|
+
class IListBoxItemDataAutomationPeerFactory(ComPtr):
|
|
1630
|
+
extends: IInspectable
|
|
1631
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListBoxItemDataAutomationPeerFactory'
|
|
1632
|
+
_iid_ = Guid('{2ce97068-5280-5bec-8ba5-785c58986dcf}')
|
|
1633
|
+
@winrt_commethod(6)
|
|
1634
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemDataAutomationPeer: ...
|
|
1635
|
+
class IListPickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
1636
|
+
extends: IInspectable
|
|
1637
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListPickerFlyoutPresenterAutomationPeer'
|
|
1638
|
+
_iid_ = Guid('{16574767-e8ca-551a-a9e9-e5394de33469}')
|
|
1639
|
+
class IListViewAutomationPeer(ComPtr):
|
|
1640
|
+
extends: IInspectable
|
|
1641
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewAutomationPeer'
|
|
1642
|
+
_iid_ = Guid('{8f2a3373-e305-55f3-923e-d9eee8d1a6ee}')
|
|
1643
|
+
class IListViewAutomationPeerFactory(ComPtr):
|
|
1644
|
+
extends: IInspectable
|
|
1645
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewAutomationPeerFactory'
|
|
1646
|
+
_iid_ = Guid('{3c6d8fc2-57ea-584e-9a89-504c65251d0f}')
|
|
1647
|
+
@winrt_commethod(6)
|
|
1648
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewAutomationPeer: ...
|
|
1649
|
+
class IListViewBaseAutomationPeer(ComPtr):
|
|
1650
|
+
extends: IInspectable
|
|
1651
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewBaseAutomationPeer'
|
|
1652
|
+
_iid_ = Guid('{ad9a395c-5a96-5331-9636-ee4c53184986}')
|
|
1653
|
+
class IListViewBaseAutomationPeerFactory(ComPtr):
|
|
1654
|
+
extends: IInspectable
|
|
1655
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewBaseAutomationPeerFactory'
|
|
1656
|
+
_iid_ = Guid('{361ed030-7c93-5967-97cb-4a9693e34050}')
|
|
1657
|
+
@winrt_commethod(6)
|
|
1658
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer: ...
|
|
1659
|
+
class IListViewBaseHeaderItemAutomationPeer(ComPtr):
|
|
1660
|
+
extends: IInspectable
|
|
1661
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewBaseHeaderItemAutomationPeer'
|
|
1662
|
+
_iid_ = Guid('{623314d2-c7f1-5003-9560-07d420a33a2a}')
|
|
1663
|
+
class IListViewBaseHeaderItemAutomationPeerFactory(ComPtr):
|
|
1664
|
+
extends: IInspectable
|
|
1665
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewBaseHeaderItemAutomationPeerFactory'
|
|
1666
|
+
_iid_ = Guid('{e6041212-904b-5d22-b856-d3ef53d16aa6}')
|
|
1667
|
+
@winrt_commethod(6)
|
|
1668
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewBaseHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer: ...
|
|
1669
|
+
class IListViewHeaderItemAutomationPeer(ComPtr):
|
|
1670
|
+
extends: IInspectable
|
|
1671
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewHeaderItemAutomationPeer'
|
|
1672
|
+
_iid_ = Guid('{0293eaca-f7de-5a0d-9beb-79dc1ac4a7de}')
|
|
1673
|
+
class IListViewHeaderItemAutomationPeerFactory(ComPtr):
|
|
1674
|
+
extends: IInspectable
|
|
1675
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewHeaderItemAutomationPeerFactory'
|
|
1676
|
+
_iid_ = Guid('{f7b3480b-bfff-5c1c-b9d5-8eee544aebf8}')
|
|
1677
|
+
@winrt_commethod(6)
|
|
1678
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewHeaderItemAutomationPeer: ...
|
|
1679
|
+
class IListViewItemAutomationPeer(ComPtr):
|
|
1680
|
+
extends: IInspectable
|
|
1681
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewItemAutomationPeer'
|
|
1682
|
+
_iid_ = Guid('{de487f2c-5a61-599e-b9ff-0fd7675d7af3}')
|
|
1683
|
+
class IListViewItemAutomationPeerFactory(ComPtr):
|
|
1684
|
+
extends: IInspectable
|
|
1685
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewItemAutomationPeerFactory'
|
|
1686
|
+
_iid_ = Guid('{d6625ba7-1ae3-58b1-af12-e5cd5afc17ff}')
|
|
1687
|
+
@winrt_commethod(6)
|
|
1688
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer: ...
|
|
1689
|
+
class IListViewItemDataAutomationPeer(ComPtr):
|
|
1690
|
+
extends: IInspectable
|
|
1691
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewItemDataAutomationPeer'
|
|
1692
|
+
_iid_ = Guid('{88bb28d3-45ed-5415-825f-dd2da536c968}')
|
|
1693
|
+
class IListViewItemDataAutomationPeerFactory(ComPtr):
|
|
1694
|
+
extends: IInspectable
|
|
1695
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IListViewItemDataAutomationPeerFactory'
|
|
1696
|
+
_iid_ = Guid('{9b22e7ea-6f7a-5c05-8072-5bddf54f9bda}')
|
|
1697
|
+
@winrt_commethod(6)
|
|
1698
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemDataAutomationPeer: ...
|
|
1699
|
+
class ILoopingSelectorAutomationPeer(ComPtr):
|
|
1700
|
+
extends: IInspectable
|
|
1701
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorAutomationPeer'
|
|
1702
|
+
_iid_ = Guid('{00b612f4-8faf-5c0c-92e4-4396e0f7b8d8}')
|
|
1703
|
+
class ILoopingSelectorItemAutomationPeer(ComPtr):
|
|
1704
|
+
extends: IInspectable
|
|
1705
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorItemAutomationPeer'
|
|
1706
|
+
_iid_ = Guid('{9c108861-895f-5e92-84c1-ff12072e7ec0}')
|
|
1707
|
+
class ILoopingSelectorItemDataAutomationPeer(ComPtr):
|
|
1708
|
+
extends: IInspectable
|
|
1709
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorItemDataAutomationPeer'
|
|
1710
|
+
_iid_ = Guid('{1f8362eb-a069-5121-a56b-619365b4515c}')
|
|
1711
|
+
class IMediaPlayerElementAutomationPeer(ComPtr):
|
|
1712
|
+
extends: IInspectable
|
|
1713
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMediaPlayerElementAutomationPeer'
|
|
1714
|
+
_iid_ = Guid('{f68b8ca2-4428-5c35-b6a8-1b2ea062c22c}')
|
|
1715
|
+
class IMediaPlayerElementAutomationPeerFactory(ComPtr):
|
|
1716
|
+
extends: IInspectable
|
|
1717
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMediaPlayerElementAutomationPeerFactory'
|
|
1718
|
+
_iid_ = Guid('{2ae1aa11-7a7c-5580-a7d7-f7597859bdc2}')
|
|
1719
|
+
@winrt_commethod(6)
|
|
1720
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.MediaPlayerElement, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MediaPlayerElementAutomationPeer: ...
|
|
1721
|
+
class IMediaTransportControlsAutomationPeer(ComPtr):
|
|
1722
|
+
extends: IInspectable
|
|
1723
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMediaTransportControlsAutomationPeer'
|
|
1724
|
+
_iid_ = Guid('{da850d4e-8715-5ae7-81a9-abd10d17c1ed}')
|
|
1725
|
+
class IMediaTransportControlsAutomationPeerFactory(ComPtr):
|
|
1726
|
+
extends: IInspectable
|
|
1727
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMediaTransportControlsAutomationPeerFactory'
|
|
1728
|
+
_iid_ = Guid('{77f281e1-cb51-5360-b74e-6fe4f8ee5028}')
|
|
1729
|
+
@winrt_commethod(6)
|
|
1730
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.MediaTransportControls, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MediaTransportControlsAutomationPeer: ...
|
|
1731
|
+
class IMenuBarAutomationPeer(ComPtr):
|
|
1732
|
+
extends: IInspectable
|
|
1733
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuBarAutomationPeer'
|
|
1734
|
+
_iid_ = Guid('{ae96e710-b9d3-59dd-973e-1bbc86cf0afc}')
|
|
1735
|
+
class IMenuBarAutomationPeerFactory(ComPtr):
|
|
1736
|
+
extends: IInspectable
|
|
1737
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuBarAutomationPeerFactory'
|
|
1738
|
+
_iid_ = Guid('{d3e1ca3f-1702-5bd3-8adb-e6f6cb9e7531}')
|
|
1739
|
+
@winrt_commethod(6)
|
|
1740
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.MenuBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarAutomationPeer: ...
|
|
1741
|
+
class IMenuBarItemAutomationPeer(ComPtr):
|
|
1742
|
+
extends: IInspectable
|
|
1743
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuBarItemAutomationPeer'
|
|
1744
|
+
_iid_ = Guid('{2da890cd-0aae-53b9-8c12-81003f60ed14}')
|
|
1745
|
+
class IMenuBarItemAutomationPeerFactory(ComPtr):
|
|
1746
|
+
extends: IInspectable
|
|
1747
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuBarItemAutomationPeerFactory'
|
|
1748
|
+
_iid_ = Guid('{603b63c4-a626-50e6-9c1a-649699ca7ad6}')
|
|
1749
|
+
@winrt_commethod(6)
|
|
1750
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.MenuBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarItemAutomationPeer: ...
|
|
1751
|
+
class IMenuFlyoutItemAutomationPeer(ComPtr):
|
|
1752
|
+
extends: IInspectable
|
|
1753
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutItemAutomationPeer'
|
|
1754
|
+
_iid_ = Guid('{fdb57952-2a4f-5ed4-8ada-320def75ea71}')
|
|
1755
|
+
class IMenuFlyoutItemAutomationPeerFactory(ComPtr):
|
|
1756
|
+
extends: IInspectable
|
|
1757
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutItemAutomationPeerFactory'
|
|
1758
|
+
_iid_ = Guid('{fe125e46-7c1c-5a7c-98e0-c7aa3a00a6cd}')
|
|
1759
|
+
@winrt_commethod(6)
|
|
1760
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.MenuFlyoutItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutItemAutomationPeer: ...
|
|
1761
|
+
class IMenuFlyoutPresenterAutomationPeer(ComPtr):
|
|
1762
|
+
extends: IInspectable
|
|
1763
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutPresenterAutomationPeer'
|
|
1764
|
+
_iid_ = Guid('{74d3ff77-1e92-5f96-99a1-697d74283ba7}')
|
|
1765
|
+
class IMenuFlyoutPresenterAutomationPeerFactory(ComPtr):
|
|
1766
|
+
extends: IInspectable
|
|
1767
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutPresenterAutomationPeerFactory'
|
|
1768
|
+
_iid_ = Guid('{beadfdfc-1035-5ffd-bae6-03f754b05dcc}')
|
|
1769
|
+
@winrt_commethod(6)
|
|
1770
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.MenuFlyoutPresenter, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutPresenterAutomationPeer: ...
|
|
1771
|
+
class INavigationViewAutomationPeer(ComPtr):
|
|
1772
|
+
extends: IInspectable
|
|
1773
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INavigationViewAutomationPeer'
|
|
1774
|
+
_iid_ = Guid('{72013eae-b015-550d-ba8d-a05112b62731}')
|
|
1775
|
+
class INavigationViewAutomationPeerFactory(ComPtr):
|
|
1776
|
+
extends: IInspectable
|
|
1777
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INavigationViewAutomationPeerFactory'
|
|
1778
|
+
_iid_ = Guid('{75075b03-a2f7-5869-b23c-63cbe5acc43a}')
|
|
1779
|
+
@winrt_commethod(6)
|
|
1780
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.NavigationView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewAutomationPeer: ...
|
|
1781
|
+
class INavigationViewItemAutomationPeer(ComPtr):
|
|
1782
|
+
extends: IInspectable
|
|
1783
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INavigationViewItemAutomationPeer'
|
|
1784
|
+
_iid_ = Guid('{c7924c7a-739f-5251-9b86-df6486eb08a7}')
|
|
1785
|
+
class INavigationViewItemAutomationPeerFactory(ComPtr):
|
|
1786
|
+
extends: IInspectable
|
|
1787
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INavigationViewItemAutomationPeerFactory'
|
|
1788
|
+
_iid_ = Guid('{890516d0-5a62-528b-8873-4f7140b40489}')
|
|
1789
|
+
@winrt_commethod(6)
|
|
1790
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.NavigationViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewItemAutomationPeer: ...
|
|
1791
|
+
class INumberBoxAutomationPeer(ComPtr):
|
|
1792
|
+
extends: IInspectable
|
|
1793
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INumberBoxAutomationPeer'
|
|
1794
|
+
_iid_ = Guid('{235befeb-6c98-5d35-a2e7-001eae342509}')
|
|
1795
|
+
class INumberBoxAutomationPeerFactory(ComPtr):
|
|
1796
|
+
extends: IInspectable
|
|
1797
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.INumberBoxAutomationPeerFactory'
|
|
1798
|
+
_iid_ = Guid('{659719ac-4405-58f4-bde2-ef61dfe64c21}')
|
|
1799
|
+
@winrt_commethod(6)
|
|
1800
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.NumberBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NumberBoxAutomationPeer: ...
|
|
1801
|
+
class IPasswordBoxAutomationPeer(ComPtr):
|
|
1802
|
+
extends: IInspectable
|
|
1803
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPasswordBoxAutomationPeer'
|
|
1804
|
+
_iid_ = Guid('{49b18dba-fa3b-5106-a1e8-1aaa3d24d5e1}')
|
|
1805
|
+
class IPasswordBoxAutomationPeerFactory(ComPtr):
|
|
1806
|
+
extends: IInspectable
|
|
1807
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPasswordBoxAutomationPeerFactory'
|
|
1808
|
+
_iid_ = Guid('{7b0d5cba-c5b3-553e-989a-a10ee04144af}')
|
|
1809
|
+
@winrt_commethod(6)
|
|
1810
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.PasswordBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PasswordBoxAutomationPeer: ...
|
|
1811
|
+
class IPersonPictureAutomationPeer(ComPtr):
|
|
1812
|
+
extends: IInspectable
|
|
1813
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPersonPictureAutomationPeer'
|
|
1814
|
+
_iid_ = Guid('{2e71779b-aca4-52c2-8a25-bc5f1ee3b0ae}')
|
|
1815
|
+
class IPersonPictureAutomationPeerFactory(ComPtr):
|
|
1816
|
+
extends: IInspectable
|
|
1817
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPersonPictureAutomationPeerFactory'
|
|
1818
|
+
_iid_ = Guid('{bd1709e5-1940-56fc-b5c3-85e4570951cc}')
|
|
1819
|
+
@winrt_commethod(6)
|
|
1820
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.PersonPicture, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PersonPictureAutomationPeer: ...
|
|
1821
|
+
class IPickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
1822
|
+
extends: IInspectable
|
|
1823
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPickerFlyoutPresenterAutomationPeer'
|
|
1824
|
+
_iid_ = Guid('{b29f6d28-154b-5c1d-a5e8-98604bb5cdf6}')
|
|
1825
|
+
class IPipsPagerAutomationPeer(ComPtr):
|
|
1826
|
+
extends: IInspectable
|
|
1827
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPipsPagerAutomationPeer'
|
|
1828
|
+
_iid_ = Guid('{93de1bc2-cf84-5b5f-91be-a7c781b2021a}')
|
|
1829
|
+
class IPipsPagerAutomationPeerFactory(ComPtr):
|
|
1830
|
+
extends: IInspectable
|
|
1831
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPipsPagerAutomationPeerFactory'
|
|
1832
|
+
_iid_ = Guid('{fb5248ef-e835-5997-bc36-d4e5db4a1b5a}')
|
|
1833
|
+
@winrt_commethod(6)
|
|
1834
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.PipsPager, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PipsPagerAutomationPeer: ...
|
|
1835
|
+
class IPivotAutomationPeer(ComPtr):
|
|
1836
|
+
extends: IInspectable
|
|
1837
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotAutomationPeer'
|
|
1838
|
+
_iid_ = Guid('{84225540-a6a3-5e65-a3dc-b31b81ab14c1}')
|
|
1839
|
+
class IPivotAutomationPeerFactory(ComPtr):
|
|
1840
|
+
extends: IInspectable
|
|
1841
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotAutomationPeerFactory'
|
|
1842
|
+
_iid_ = Guid('{b1dd0229-c14c-5ac0-8331-be24fa2007f0}')
|
|
1843
|
+
@winrt_commethod(6)
|
|
1844
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Pivot) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer: ...
|
|
1845
|
+
class IPivotItemAutomationPeer(ComPtr):
|
|
1846
|
+
extends: IInspectable
|
|
1847
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotItemAutomationPeer'
|
|
1848
|
+
_iid_ = Guid('{bfe7fb7b-2d88-56e4-b50f-0a40de6f52a1}')
|
|
1849
|
+
class IPivotItemAutomationPeerFactory(ComPtr):
|
|
1850
|
+
extends: IInspectable
|
|
1851
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotItemAutomationPeerFactory'
|
|
1852
|
+
_iid_ = Guid('{14966ee7-afaf-5fcc-9346-f0e7192c220a}')
|
|
1853
|
+
@winrt_commethod(6)
|
|
1854
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.PivotItem) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemAutomationPeer: ...
|
|
1855
|
+
class IPivotItemDataAutomationPeer(ComPtr):
|
|
1856
|
+
extends: IInspectable
|
|
1857
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotItemDataAutomationPeer'
|
|
1858
|
+
_iid_ = Guid('{6758ebee-b3e0-5feb-aaba-b7f6c59fe49f}')
|
|
1859
|
+
class IPivotItemDataAutomationPeerFactory(ComPtr):
|
|
1860
|
+
extends: IInspectable
|
|
1861
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IPivotItemDataAutomationPeerFactory'
|
|
1862
|
+
_iid_ = Guid('{26d7a6e9-ce6b-5690-9024-75ce5770b0d6}')
|
|
1863
|
+
@winrt_commethod(6)
|
|
1864
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemDataAutomationPeer: ...
|
|
1865
|
+
class IProgressBarAutomationPeer(ComPtr):
|
|
1866
|
+
extends: IInspectable
|
|
1867
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IProgressBarAutomationPeer'
|
|
1868
|
+
_iid_ = Guid('{8565ead9-b877-52c7-a147-6fe1fee767af}')
|
|
1869
|
+
class IProgressBarAutomationPeerFactory(ComPtr):
|
|
1870
|
+
extends: IInspectable
|
|
1871
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IProgressBarAutomationPeerFactory'
|
|
1872
|
+
_iid_ = Guid('{cea28c0d-c4b3-5d18-aef6-958031395878}')
|
|
1873
|
+
@winrt_commethod(6)
|
|
1874
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ProgressBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressBarAutomationPeer: ...
|
|
1875
|
+
class IProgressRingAutomationPeer(ComPtr):
|
|
1876
|
+
extends: IInspectable
|
|
1877
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IProgressRingAutomationPeer'
|
|
1878
|
+
_iid_ = Guid('{3b6952da-9e44-52b0-91df-39da9dc1d8b0}')
|
|
1879
|
+
class IProgressRingAutomationPeerFactory(ComPtr):
|
|
1880
|
+
extends: IInspectable
|
|
1881
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IProgressRingAutomationPeerFactory'
|
|
1882
|
+
_iid_ = Guid('{650f375c-3b29-5376-a7f7-c78082b82d13}')
|
|
1883
|
+
@winrt_commethod(6)
|
|
1884
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ProgressRing, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressRingAutomationPeer: ...
|
|
1885
|
+
class IRadioButtonAutomationPeer(ComPtr):
|
|
1886
|
+
extends: IInspectable
|
|
1887
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRadioButtonAutomationPeer'
|
|
1888
|
+
_iid_ = Guid('{cce147b7-574a-53b6-a5b2-ca2622a79b2c}')
|
|
1889
|
+
class IRadioButtonAutomationPeerFactory(ComPtr):
|
|
1890
|
+
extends: IInspectable
|
|
1891
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRadioButtonAutomationPeerFactory'
|
|
1892
|
+
_iid_ = Guid('{ca07c7ee-502a-509e-bc44-682e6828d1f8}')
|
|
1893
|
+
@winrt_commethod(6)
|
|
1894
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.RadioButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonAutomationPeer: ...
|
|
1895
|
+
class IRadioButtonsAutomationPeer(ComPtr):
|
|
1896
|
+
extends: IInspectable
|
|
1897
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRadioButtonsAutomationPeer'
|
|
1898
|
+
_iid_ = Guid('{fff86275-0cdd-54db-9d88-9c0e5f9bcb4d}')
|
|
1899
|
+
class IRadioButtonsAutomationPeerFactory(ComPtr):
|
|
1900
|
+
extends: IInspectable
|
|
1901
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRadioButtonsAutomationPeerFactory'
|
|
1902
|
+
_iid_ = Guid('{f13521d0-056e-598c-ad23-a7150049d80a}')
|
|
1903
|
+
@winrt_commethod(6)
|
|
1904
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.RadioButtons, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonsAutomationPeer: ...
|
|
1905
|
+
class IRangeBaseAutomationPeer(ComPtr):
|
|
1906
|
+
extends: IInspectable
|
|
1907
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRangeBaseAutomationPeer'
|
|
1908
|
+
_iid_ = Guid('{b5d50512-70a9-5b27-82fe-16f6ba67bac5}')
|
|
1909
|
+
class IRangeBaseAutomationPeerFactory(ComPtr):
|
|
1910
|
+
extends: IInspectable
|
|
1911
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRangeBaseAutomationPeerFactory'
|
|
1912
|
+
_iid_ = Guid('{8c8f25e9-5194-54a9-b787-ce0293fd6721}')
|
|
1913
|
+
@winrt_commethod(6)
|
|
1914
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.RangeBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer: ...
|
|
1915
|
+
class IRatingControlAutomationPeer(ComPtr):
|
|
1916
|
+
extends: IInspectable
|
|
1917
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRatingControlAutomationPeer'
|
|
1918
|
+
_iid_ = Guid('{55493ec4-926b-595a-97a3-a7fa604188a4}')
|
|
1919
|
+
class IRatingControlAutomationPeerFactory(ComPtr):
|
|
1920
|
+
extends: IInspectable
|
|
1921
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRatingControlAutomationPeerFactory'
|
|
1922
|
+
_iid_ = Guid('{f87dacb6-e87e-59b3-8a40-331ea7aa747d}')
|
|
1923
|
+
@winrt_commethod(6)
|
|
1924
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.RatingControl, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RatingControlAutomationPeer: ...
|
|
1925
|
+
class IRepeatButtonAutomationPeer(ComPtr):
|
|
1926
|
+
extends: IInspectable
|
|
1927
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRepeatButtonAutomationPeer'
|
|
1928
|
+
_iid_ = Guid('{e42a7cc2-ace8-56eb-9967-9b7fd157c37f}')
|
|
1929
|
+
class IRepeatButtonAutomationPeerFactory(ComPtr):
|
|
1930
|
+
extends: IInspectable
|
|
1931
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRepeatButtonAutomationPeerFactory'
|
|
1932
|
+
_iid_ = Guid('{0fad55a4-1c62-595e-a189-bb43a219c699}')
|
|
1933
|
+
@winrt_commethod(6)
|
|
1934
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.RepeatButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RepeatButtonAutomationPeer: ...
|
|
1935
|
+
class IRepeaterAutomationPeer(ComPtr):
|
|
1936
|
+
extends: IInspectable
|
|
1937
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRepeaterAutomationPeer'
|
|
1938
|
+
_iid_ = Guid('{03f2c315-fb55-54b2-9aad-9723aaf5e2cf}')
|
|
1939
|
+
class IRepeaterAutomationPeerFactory(ComPtr):
|
|
1940
|
+
extends: IInspectable
|
|
1941
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRepeaterAutomationPeerFactory'
|
|
1942
|
+
_iid_ = Guid('{04526bc7-fa3e-55fe-a314-986e2f196a2f}')
|
|
1943
|
+
@winrt_commethod(6)
|
|
1944
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsRepeater, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RepeaterAutomationPeer: ...
|
|
1945
|
+
class IRichEditBoxAutomationPeer(ComPtr):
|
|
1946
|
+
extends: IInspectable
|
|
1947
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichEditBoxAutomationPeer'
|
|
1948
|
+
_iid_ = Guid('{193a43f1-129d-57e1-bcf9-ba966bcadacb}')
|
|
1949
|
+
class IRichEditBoxAutomationPeerFactory(ComPtr):
|
|
1950
|
+
extends: IInspectable
|
|
1951
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichEditBoxAutomationPeerFactory'
|
|
1952
|
+
_iid_ = Guid('{84f0d84f-54ca-58f2-ac50-d379aab75463}')
|
|
1953
|
+
@winrt_commethod(6)
|
|
1954
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.RichEditBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichEditBoxAutomationPeer: ...
|
|
1955
|
+
class IRichTextBlockAutomationPeer(ComPtr):
|
|
1956
|
+
extends: IInspectable
|
|
1957
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockAutomationPeer'
|
|
1958
|
+
_iid_ = Guid('{7080ff80-b3b8-5d3c-89b5-d989d561192f}')
|
|
1959
|
+
class IRichTextBlockAutomationPeerFactory(ComPtr):
|
|
1960
|
+
extends: IInspectable
|
|
1961
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockAutomationPeerFactory'
|
|
1962
|
+
_iid_ = Guid('{f8a4485b-2895-5886-8ff6-497e4f1a6e3d}')
|
|
1963
|
+
@winrt_commethod(6)
|
|
1964
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.RichTextBlock, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockAutomationPeer: ...
|
|
1965
|
+
class IRichTextBlockOverflowAutomationPeer(ComPtr):
|
|
1966
|
+
extends: IInspectable
|
|
1967
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockOverflowAutomationPeer'
|
|
1968
|
+
_iid_ = Guid('{d0bf83c0-8cfb-5770-b26c-0706e51a9a3b}')
|
|
1969
|
+
class IRichTextBlockOverflowAutomationPeerFactory(ComPtr):
|
|
1970
|
+
extends: IInspectable
|
|
1971
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockOverflowAutomationPeerFactory'
|
|
1972
|
+
_iid_ = Guid('{3e7b3ced-bd1f-5851-97a4-1c318f60d641}')
|
|
1973
|
+
@winrt_commethod(6)
|
|
1974
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.RichTextBlockOverflow, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockOverflowAutomationPeer: ...
|
|
1975
|
+
class IScrollBarAutomationPeer(ComPtr):
|
|
1976
|
+
extends: IInspectable
|
|
1977
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IScrollBarAutomationPeer'
|
|
1978
|
+
_iid_ = Guid('{028a26c4-05f7-58b2-a81e-a7ac032f756f}')
|
|
1979
|
+
class IScrollBarAutomationPeerFactory(ComPtr):
|
|
1980
|
+
extends: IInspectable
|
|
1981
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IScrollBarAutomationPeerFactory'
|
|
1982
|
+
_iid_ = Guid('{fc67a9cc-e914-532a-8717-0b383e2157f3}')
|
|
1983
|
+
@winrt_commethod(6)
|
|
1984
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ScrollBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollBarAutomationPeer: ...
|
|
1985
|
+
class IScrollViewerAutomationPeer(ComPtr):
|
|
1986
|
+
extends: IInspectable
|
|
1987
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IScrollViewerAutomationPeer'
|
|
1988
|
+
_iid_ = Guid('{25394bad-6ca2-5e04-95fa-95412c1f80ac}')
|
|
1989
|
+
class IScrollViewerAutomationPeerFactory(ComPtr):
|
|
1990
|
+
extends: IInspectable
|
|
1991
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IScrollViewerAutomationPeerFactory'
|
|
1992
|
+
_iid_ = Guid('{3f1578f9-60ec-5f7c-8d11-10c535a75a12}')
|
|
1993
|
+
@winrt_commethod(6)
|
|
1994
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ScrollViewer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollViewerAutomationPeer: ...
|
|
1995
|
+
class ISelectorAutomationPeer(ComPtr):
|
|
1996
|
+
extends: IInspectable
|
|
1997
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorAutomationPeer'
|
|
1998
|
+
_iid_ = Guid('{4bac62ba-fb33-5f8b-995e-0dd93431294f}')
|
|
1999
|
+
class ISelectorAutomationPeerFactory(ComPtr):
|
|
2000
|
+
extends: IInspectable
|
|
2001
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorAutomationPeerFactory'
|
|
2002
|
+
_iid_ = Guid('{d84fe7b9-f5f5-5122-b41c-5575a799d581}')
|
|
2003
|
+
@winrt_commethod(6)
|
|
2004
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.Selector, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer: ...
|
|
2005
|
+
class ISelectorBarItemAutomationPeer(ComPtr):
|
|
2006
|
+
extends: IInspectable
|
|
2007
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorBarItemAutomationPeer'
|
|
2008
|
+
_iid_ = Guid('{cdb1078e-1350-56fb-8728-8537b0f35c20}')
|
|
2009
|
+
class ISelectorBarItemAutomationPeerFactory(ComPtr):
|
|
2010
|
+
extends: IInspectable
|
|
2011
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorBarItemAutomationPeerFactory'
|
|
2012
|
+
_iid_ = Guid('{4aab3752-0ddb-5e2d-a614-0b5f7d4efe9d}')
|
|
2013
|
+
@winrt_commethod(6)
|
|
2014
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.SelectorBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorBarItemAutomationPeer: ...
|
|
2015
|
+
class ISelectorItemAutomationPeer(ComPtr):
|
|
2016
|
+
extends: IInspectable
|
|
2017
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorItemAutomationPeer'
|
|
2018
|
+
_iid_ = Guid('{70b85e53-e684-5068-91b7-2d84fea8e9d7}')
|
|
2019
|
+
class ISelectorItemAutomationPeerFactory(ComPtr):
|
|
2020
|
+
extends: IInspectable
|
|
2021
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISelectorItemAutomationPeerFactory'
|
|
2022
|
+
_iid_ = Guid('{2691e85b-dc9c-5ce6-aec9-21c8da9a4ad1}')
|
|
2023
|
+
@winrt_commethod(6)
|
|
2024
|
+
def CreateInstanceWithParentAndItem(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer: ...
|
|
2025
|
+
class ISemanticZoomAutomationPeer(ComPtr):
|
|
2026
|
+
extends: IInspectable
|
|
2027
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISemanticZoomAutomationPeer'
|
|
2028
|
+
_iid_ = Guid('{7d7fbd09-112f-50fd-9654-0474ce760b5d}')
|
|
2029
|
+
class ISemanticZoomAutomationPeerFactory(ComPtr):
|
|
2030
|
+
extends: IInspectable
|
|
2031
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISemanticZoomAutomationPeerFactory'
|
|
2032
|
+
_iid_ = Guid('{0572c3c2-87df-55d6-8fcc-032330108cd8}')
|
|
2033
|
+
@winrt_commethod(6)
|
|
2034
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.SemanticZoom, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SemanticZoomAutomationPeer: ...
|
|
2035
|
+
class ISliderAutomationPeer(ComPtr):
|
|
2036
|
+
extends: IInspectable
|
|
2037
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISliderAutomationPeer'
|
|
2038
|
+
_iid_ = Guid('{c321c95f-c917-5714-9d16-ad706e38926a}')
|
|
2039
|
+
class ISliderAutomationPeerFactory(ComPtr):
|
|
2040
|
+
extends: IInspectable
|
|
2041
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISliderAutomationPeerFactory'
|
|
2042
|
+
_iid_ = Guid('{81459943-902a-5fe3-9c75-0f8b11f42658}')
|
|
2043
|
+
@winrt_commethod(6)
|
|
2044
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Slider, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SliderAutomationPeer: ...
|
|
2045
|
+
class ISplitButtonAutomationPeer(ComPtr):
|
|
2046
|
+
extends: IInspectable
|
|
2047
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISplitButtonAutomationPeer'
|
|
2048
|
+
_iid_ = Guid('{0182661c-0df3-5c7d-8752-547804c4fa44}')
|
|
2049
|
+
class ISplitButtonAutomationPeerFactory(ComPtr):
|
|
2050
|
+
extends: IInspectable
|
|
2051
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ISplitButtonAutomationPeerFactory'
|
|
2052
|
+
_iid_ = Guid('{e82ddc93-780e-5000-981e-9be10eedeb1f}')
|
|
2053
|
+
@winrt_commethod(6)
|
|
2054
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.SplitButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SplitButtonAutomationPeer: ...
|
|
2055
|
+
class ITabViewAutomationPeer(ComPtr):
|
|
2056
|
+
extends: IInspectable
|
|
2057
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITabViewAutomationPeer'
|
|
2058
|
+
_iid_ = Guid('{efb3f05b-2a25-5266-a1cb-5a0aa451ca32}')
|
|
2059
|
+
class ITabViewAutomationPeerFactory(ComPtr):
|
|
2060
|
+
extends: IInspectable
|
|
2061
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITabViewAutomationPeerFactory'
|
|
2062
|
+
_iid_ = Guid('{f8d8c7cb-47cc-5da5-bd1a-e2e1ba0fd24d}')
|
|
2063
|
+
@winrt_commethod(6)
|
|
2064
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.TabView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewAutomationPeer: ...
|
|
2065
|
+
class ITabViewItemAutomationPeer(ComPtr):
|
|
2066
|
+
extends: IInspectable
|
|
2067
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITabViewItemAutomationPeer'
|
|
2068
|
+
_iid_ = Guid('{58afb1c3-a3fd-54a1-be39-328dd8a6f8ec}')
|
|
2069
|
+
class ITabViewItemAutomationPeerFactory(ComPtr):
|
|
2070
|
+
extends: IInspectable
|
|
2071
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITabViewItemAutomationPeerFactory'
|
|
2072
|
+
_iid_ = Guid('{00218040-9c0d-5c52-b578-593b809047b3}')
|
|
2073
|
+
@winrt_commethod(6)
|
|
2074
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.TabViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewItemAutomationPeer: ...
|
|
2075
|
+
class ITeachingTipAutomationPeer(ComPtr):
|
|
2076
|
+
extends: IInspectable
|
|
2077
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITeachingTipAutomationPeer'
|
|
2078
|
+
_iid_ = Guid('{607994ec-a995-5b07-b535-8c913f0bc26c}')
|
|
2079
|
+
class ITeachingTipAutomationPeerFactory(ComPtr):
|
|
2080
|
+
extends: IInspectable
|
|
2081
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITeachingTipAutomationPeerFactory'
|
|
2082
|
+
_iid_ = Guid('{71a061c1-3d71-5548-98fd-62167f246085}')
|
|
2083
|
+
@winrt_commethod(6)
|
|
2084
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.TeachingTip, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TeachingTipAutomationPeer: ...
|
|
2085
|
+
class ITextBlockAutomationPeer(ComPtr):
|
|
2086
|
+
extends: IInspectable
|
|
2087
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITextBlockAutomationPeer'
|
|
2088
|
+
_iid_ = Guid('{29521960-2ef2-5d15-bf6a-cf585ef8a571}')
|
|
2089
|
+
class ITextBlockAutomationPeerFactory(ComPtr):
|
|
2090
|
+
extends: IInspectable
|
|
2091
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITextBlockAutomationPeerFactory'
|
|
2092
|
+
_iid_ = Guid('{2a04c7bb-6d48-5f8e-9622-54dccdf0a5ca}')
|
|
2093
|
+
@winrt_commethod(6)
|
|
2094
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.TextBlock, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TextBlockAutomationPeer: ...
|
|
2095
|
+
class ITextBoxAutomationPeer(ComPtr):
|
|
2096
|
+
extends: IInspectable
|
|
2097
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITextBoxAutomationPeer'
|
|
2098
|
+
_iid_ = Guid('{9e26139a-0618-56fa-9916-8d5edf564735}')
|
|
2099
|
+
class ITextBoxAutomationPeerFactory(ComPtr):
|
|
2100
|
+
extends: IInspectable
|
|
2101
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITextBoxAutomationPeerFactory'
|
|
2102
|
+
_iid_ = Guid('{1e84ac8f-9974-5be1-b6ea-84f309c8b2b8}')
|
|
2103
|
+
@winrt_commethod(6)
|
|
2104
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.TextBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TextBoxAutomationPeer: ...
|
|
2105
|
+
class IThumbAutomationPeer(ComPtr):
|
|
2106
|
+
extends: IInspectable
|
|
2107
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IThumbAutomationPeer'
|
|
2108
|
+
_iid_ = Guid('{b05d6e5b-3586-5157-a497-4f15b87d89eb}')
|
|
2109
|
+
class IThumbAutomationPeerFactory(ComPtr):
|
|
2110
|
+
extends: IInspectable
|
|
2111
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IThumbAutomationPeerFactory'
|
|
2112
|
+
_iid_ = Guid('{311b414a-7cc8-56d9-b581-149c8bf9d76d}')
|
|
2113
|
+
@winrt_commethod(6)
|
|
2114
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.Thumb, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ThumbAutomationPeer: ...
|
|
2115
|
+
class ITimePickerAutomationPeer(ComPtr):
|
|
2116
|
+
extends: IInspectable
|
|
2117
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITimePickerAutomationPeer'
|
|
2118
|
+
_iid_ = Guid('{6309d3bb-3387-5965-acf5-47bfa9b92ed4}')
|
|
2119
|
+
class ITimePickerAutomationPeerFactory(ComPtr):
|
|
2120
|
+
extends: IInspectable
|
|
2121
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITimePickerAutomationPeerFactory'
|
|
2122
|
+
_iid_ = Guid('{7cdf2f82-7453-5d86-8ee3-60daaf345f47}')
|
|
2123
|
+
@winrt_commethod(6)
|
|
2124
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.TimePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TimePickerAutomationPeer: ...
|
|
2125
|
+
class ITimePickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
2126
|
+
extends: IInspectable
|
|
2127
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITimePickerFlyoutPresenterAutomationPeer'
|
|
2128
|
+
_iid_ = Guid('{2438268a-62e8-5d61-95d0-d36f6b42e652}')
|
|
2129
|
+
class IToggleButtonAutomationPeer(ComPtr):
|
|
2130
|
+
extends: IInspectable
|
|
2131
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleButtonAutomationPeer'
|
|
2132
|
+
_iid_ = Guid('{637d9b99-bcc2-5e26-b43f-ba6c26af72c3}')
|
|
2133
|
+
class IToggleButtonAutomationPeerFactory(ComPtr):
|
|
2134
|
+
extends: IInspectable
|
|
2135
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleButtonAutomationPeerFactory'
|
|
2136
|
+
_iid_ = Guid('{2c272096-21e0-5714-9164-1f6a1e0b2181}')
|
|
2137
|
+
@winrt_commethod(6)
|
|
2138
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ToggleButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer: ...
|
|
2139
|
+
class IToggleMenuFlyoutItemAutomationPeer(ComPtr):
|
|
2140
|
+
extends: IInspectable
|
|
2141
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleMenuFlyoutItemAutomationPeer'
|
|
2142
|
+
_iid_ = Guid('{ea4e4c7e-1f12-56c0-a2a5-b59e9c25b06d}')
|
|
2143
|
+
class IToggleMenuFlyoutItemAutomationPeerFactory(ComPtr):
|
|
2144
|
+
extends: IInspectable
|
|
2145
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleMenuFlyoutItemAutomationPeerFactory'
|
|
2146
|
+
_iid_ = Guid('{7789f700-d565-5dc7-8bcc-d459a4c08fd6}')
|
|
2147
|
+
@winrt_commethod(6)
|
|
2148
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleMenuFlyoutItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleMenuFlyoutItemAutomationPeer: ...
|
|
2149
|
+
class IToggleSplitButtonAutomationPeer(ComPtr):
|
|
2150
|
+
extends: IInspectable
|
|
2151
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleSplitButtonAutomationPeer'
|
|
2152
|
+
_iid_ = Guid('{21356952-4c74-5273-b82d-e5ce1bbcd369}')
|
|
2153
|
+
class IToggleSplitButtonAutomationPeerFactory(ComPtr):
|
|
2154
|
+
extends: IInspectable
|
|
2155
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleSplitButtonAutomationPeerFactory'
|
|
2156
|
+
_iid_ = Guid('{61c214a5-605b-5e98-b85d-e3121d23edaa}')
|
|
2157
|
+
@winrt_commethod(6)
|
|
2158
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleSplitButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSplitButtonAutomationPeer: ...
|
|
2159
|
+
class IToggleSwitchAutomationPeer(ComPtr):
|
|
2160
|
+
extends: IInspectable
|
|
2161
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleSwitchAutomationPeer'
|
|
2162
|
+
_iid_ = Guid('{927d6091-5070-574f-9833-0ef89a9cbb4b}')
|
|
2163
|
+
class IToggleSwitchAutomationPeerFactory(ComPtr):
|
|
2164
|
+
extends: IInspectable
|
|
2165
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IToggleSwitchAutomationPeerFactory'
|
|
2166
|
+
_iid_ = Guid('{03f5e3e4-4b61-5dcf-afdc-fd23041a0374}')
|
|
2167
|
+
@winrt_commethod(6)
|
|
2168
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleSwitch, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSwitchAutomationPeer: ...
|
|
2169
|
+
class ITreeViewItemAutomationPeer(ComPtr):
|
|
2170
|
+
extends: IInspectable
|
|
2171
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemAutomationPeer'
|
|
2172
|
+
_iid_ = Guid('{25b38166-b905-5480-8439-e459a5b77b8c}')
|
|
2173
|
+
class ITreeViewItemAutomationPeerFactory(ComPtr):
|
|
2174
|
+
extends: IInspectable
|
|
2175
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemAutomationPeerFactory'
|
|
2176
|
+
_iid_ = Guid('{0c993c78-981f-5dcf-93d3-a217ad9acab6}')
|
|
2177
|
+
@winrt_commethod(6)
|
|
2178
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.TreeViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemAutomationPeer: ...
|
|
2179
|
+
class ITreeViewItemDataAutomationPeer(ComPtr):
|
|
2180
|
+
extends: IInspectable
|
|
2181
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemDataAutomationPeer'
|
|
2182
|
+
_iid_ = Guid('{20f74f77-edfa-5c71-9deb-530dcaf9c11d}')
|
|
2183
|
+
class ITreeViewItemDataAutomationPeerFactory(ComPtr):
|
|
2184
|
+
extends: IInspectable
|
|
2185
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemDataAutomationPeerFactory'
|
|
2186
|
+
_iid_ = Guid('{07fc8e59-55a2-58ab-8921-91e57ddf119f}')
|
|
2187
|
+
@winrt_commethod(6)
|
|
2188
|
+
def CreateInstanceWithOwner(self, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemDataAutomationPeer: ...
|
|
2189
|
+
class ITreeViewListAutomationPeer(ComPtr):
|
|
2190
|
+
extends: IInspectable
|
|
2191
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewListAutomationPeer'
|
|
2192
|
+
_iid_ = Guid('{1ebf0f7f-6111-50a5-8398-89c4fdd0dedb}')
|
|
2193
|
+
class ITreeViewListAutomationPeerFactory(ComPtr):
|
|
2194
|
+
extends: IInspectable
|
|
2195
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ITreeViewListAutomationPeerFactory'
|
|
2196
|
+
_iid_ = Guid('{51332d86-c414-5e7d-b57b-e479983c9e5d}')
|
|
2197
|
+
@winrt_commethod(6)
|
|
2198
|
+
def CreateInstanceWithOwner(self, owner: win32more.Microsoft.UI.Xaml.Controls.TreeViewList, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer: ...
|
|
2199
|
+
class IWebView2AutomationPeer(ComPtr):
|
|
2200
|
+
extends: IInspectable
|
|
2201
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IWebView2AutomationPeer'
|
|
2202
|
+
_iid_ = Guid('{8e556eca-b000-5e51-810f-7b7d80c39d56}')
|
|
2203
|
+
class IWebView2AutomationPeerFactory(ComPtr):
|
|
2204
|
+
extends: IInspectable
|
|
2205
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.IWebView2AutomationPeerFactory'
|
|
2206
|
+
_iid_ = Guid('{68512210-e61e-5b56-a6af-c4fb14677155}')
|
|
2207
|
+
@winrt_commethod(6)
|
|
2208
|
+
def CreateInstance(self, owner: win32more.Microsoft.UI.Xaml.Controls.WebView2, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.WebView2AutomationPeer: ...
|
|
2209
|
+
class ImageAutomationPeer(ComPtr):
|
|
2210
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2211
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IImageAutomationPeer
|
|
2212
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ImageAutomationPeer'
|
|
2213
|
+
def __init__(self, *args, **kwargs):
|
|
2214
|
+
if kwargs:
|
|
2215
|
+
super().__init__(**kwargs)
|
|
2216
|
+
elif len(args) == 1:
|
|
2217
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ImageAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2218
|
+
else:
|
|
2219
|
+
raise ValueError('no matched constructor')
|
|
2220
|
+
@winrt_factorymethod
|
|
2221
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IImageAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Image, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ImageAutomationPeer: ...
|
|
2222
|
+
class InfoBarAutomationPeer(ComPtr):
|
|
2223
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2224
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IInfoBarAutomationPeer
|
|
2225
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.InfoBarAutomationPeer'
|
|
2226
|
+
def __init__(self, *args, **kwargs):
|
|
2227
|
+
if kwargs:
|
|
2228
|
+
super().__init__(**kwargs)
|
|
2229
|
+
elif len(args) == 1:
|
|
2230
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.InfoBarAutomationPeer.CreateInstance(*args, None, None))
|
|
2231
|
+
else:
|
|
2232
|
+
raise ValueError('no matched constructor')
|
|
2233
|
+
@winrt_factorymethod
|
|
2234
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IInfoBarAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.InfoBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.InfoBarAutomationPeer: ...
|
|
2235
|
+
class ItemAutomationPeer(ComPtr):
|
|
2236
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer
|
|
2237
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeer
|
|
2238
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer'
|
|
2239
|
+
def __init__(self, *args, **kwargs):
|
|
2240
|
+
if kwargs:
|
|
2241
|
+
super().__init__(**kwargs)
|
|
2242
|
+
elif len(args) == 2:
|
|
2243
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
2244
|
+
else:
|
|
2245
|
+
raise ValueError('no matched constructor')
|
|
2246
|
+
@winrt_factorymethod
|
|
2247
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
2248
|
+
@winrt_mixinmethod
|
|
2249
|
+
def get_Item(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeer) -> IInspectable: ...
|
|
2250
|
+
@winrt_mixinmethod
|
|
2251
|
+
def get_ItemsControlAutomationPeer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer: ...
|
|
2252
|
+
@winrt_mixinmethod
|
|
2253
|
+
def Realize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IVirtualizedItemProvider) -> Void: ...
|
|
2254
|
+
Item = property(get_Item, None)
|
|
2255
|
+
ItemsControlAutomationPeer = property(get_ItemsControlAutomationPeer, None)
|
|
2256
|
+
class ItemContainerAutomationPeer(ComPtr):
|
|
2257
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2258
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemContainerAutomationPeer
|
|
2259
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ItemContainerAutomationPeer'
|
|
2260
|
+
def __init__(self, *args, **kwargs):
|
|
2261
|
+
if kwargs:
|
|
2262
|
+
super().__init__(**kwargs)
|
|
2263
|
+
elif len(args) == 1:
|
|
2264
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ItemContainerAutomationPeer.CreateInstance(*args, None, None))
|
|
2265
|
+
else:
|
|
2266
|
+
raise ValueError('no matched constructor')
|
|
2267
|
+
@winrt_factorymethod
|
|
2268
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemContainerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ItemContainer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemContainerAutomationPeer: ...
|
|
2269
|
+
@winrt_mixinmethod
|
|
2270
|
+
def get_IsSelected(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Boolean: ...
|
|
2271
|
+
@winrt_mixinmethod
|
|
2272
|
+
def get_SelectionContainer(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2273
|
+
@winrt_mixinmethod
|
|
2274
|
+
def AddToSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2275
|
+
@winrt_mixinmethod
|
|
2276
|
+
def RemoveFromSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2277
|
+
@winrt_mixinmethod
|
|
2278
|
+
def Select(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2279
|
+
@winrt_mixinmethod
|
|
2280
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
2281
|
+
IsSelected = property(get_IsSelected, None)
|
|
2282
|
+
SelectionContainer = property(get_SelectionContainer, None)
|
|
2283
|
+
class ItemsControlAutomationPeer(ComPtr):
|
|
2284
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2285
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeer
|
|
2286
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer'
|
|
2287
|
+
def __init__(self, *args, **kwargs):
|
|
2288
|
+
if kwargs:
|
|
2289
|
+
super().__init__(**kwargs)
|
|
2290
|
+
elif len(args) == 1:
|
|
2291
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2292
|
+
else:
|
|
2293
|
+
raise ValueError('no matched constructor')
|
|
2294
|
+
@winrt_factorymethod
|
|
2295
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsControl, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer: ...
|
|
2296
|
+
@winrt_mixinmethod
|
|
2297
|
+
def CreateItemAutomationPeer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeer, item: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
2298
|
+
@winrt_mixinmethod
|
|
2299
|
+
def OnCreateItemAutomationPeer(self: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsControlAutomationPeerOverrides, item: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer: ...
|
|
2300
|
+
@winrt_mixinmethod
|
|
2301
|
+
def FindItemByProperty(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IItemContainerProvider, startAfter: win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple, automationProperty: win32more.Microsoft.UI.Xaml.Automation.AutomationProperty, value: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2302
|
+
class ItemsViewAutomationPeer(ComPtr):
|
|
2303
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2304
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsViewAutomationPeer
|
|
2305
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ItemsViewAutomationPeer'
|
|
2306
|
+
def __init__(self, *args, **kwargs):
|
|
2307
|
+
if kwargs:
|
|
2308
|
+
super().__init__(**kwargs)
|
|
2309
|
+
elif len(args) == 1:
|
|
2310
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsViewAutomationPeer.CreateInstance(*args, None, None))
|
|
2311
|
+
else:
|
|
2312
|
+
raise ValueError('no matched constructor')
|
|
2313
|
+
@winrt_factorymethod
|
|
2314
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IItemsViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsViewAutomationPeer: ...
|
|
2315
|
+
@winrt_mixinmethod
|
|
2316
|
+
def get_CanSelectMultiple(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2317
|
+
@winrt_mixinmethod
|
|
2318
|
+
def get_IsSelectionRequired(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2319
|
+
@winrt_mixinmethod
|
|
2320
|
+
def GetSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple]: ...
|
|
2321
|
+
CanSelectMultiple = property(get_CanSelectMultiple, None)
|
|
2322
|
+
IsSelectionRequired = property(get_IsSelectionRequired, None)
|
|
2323
|
+
class ListBoxAutomationPeer(ComPtr):
|
|
2324
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer
|
|
2325
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxAutomationPeer
|
|
2326
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer'
|
|
2327
|
+
def __init__(self, *args, **kwargs):
|
|
2328
|
+
if kwargs:
|
|
2329
|
+
super().__init__(**kwargs)
|
|
2330
|
+
elif len(args) == 1:
|
|
2331
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2332
|
+
else:
|
|
2333
|
+
raise ValueError('no matched constructor')
|
|
2334
|
+
@winrt_factorymethod
|
|
2335
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer: ...
|
|
2336
|
+
class ListBoxItemAutomationPeer(ComPtr):
|
|
2337
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2338
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxItemAutomationPeer
|
|
2339
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListBoxItemAutomationPeer'
|
|
2340
|
+
def __init__(self, *args, **kwargs):
|
|
2341
|
+
if kwargs:
|
|
2342
|
+
super().__init__(**kwargs)
|
|
2343
|
+
elif len(args) == 1:
|
|
2344
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2345
|
+
else:
|
|
2346
|
+
raise ValueError('no matched constructor')
|
|
2347
|
+
@winrt_factorymethod
|
|
2348
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListBoxItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemAutomationPeer: ...
|
|
2349
|
+
class ListBoxItemDataAutomationPeer(ComPtr):
|
|
2350
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer
|
|
2351
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxItemDataAutomationPeer
|
|
2352
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListBoxItemDataAutomationPeer'
|
|
2353
|
+
def __init__(self, *args, **kwargs):
|
|
2354
|
+
if kwargs:
|
|
2355
|
+
super().__init__(**kwargs)
|
|
2356
|
+
elif len(args) == 2:
|
|
2357
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
2358
|
+
else:
|
|
2359
|
+
raise ValueError('no matched constructor')
|
|
2360
|
+
@winrt_factorymethod
|
|
2361
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListBoxItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListBoxItemDataAutomationPeer: ...
|
|
2362
|
+
@winrt_mixinmethod
|
|
2363
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
2364
|
+
class ListPickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
2365
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2366
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListPickerFlyoutPresenterAutomationPeer
|
|
2367
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListPickerFlyoutPresenterAutomationPeer'
|
|
2368
|
+
class ListViewAutomationPeer(ComPtr):
|
|
2369
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer
|
|
2370
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewAutomationPeer
|
|
2371
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewAutomationPeer'
|
|
2372
|
+
def __init__(self, *args, **kwargs):
|
|
2373
|
+
if kwargs:
|
|
2374
|
+
super().__init__(**kwargs)
|
|
2375
|
+
elif len(args) == 1:
|
|
2376
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2377
|
+
else:
|
|
2378
|
+
raise ValueError('no matched constructor')
|
|
2379
|
+
@winrt_factorymethod
|
|
2380
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewAutomationPeer: ...
|
|
2381
|
+
class ListViewBaseAutomationPeer(ComPtr):
|
|
2382
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer
|
|
2383
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewBaseAutomationPeer
|
|
2384
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer'
|
|
2385
|
+
def __init__(self, *args, **kwargs):
|
|
2386
|
+
if kwargs:
|
|
2387
|
+
super().__init__(**kwargs)
|
|
2388
|
+
elif len(args) == 1:
|
|
2389
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2390
|
+
else:
|
|
2391
|
+
raise ValueError('no matched constructor')
|
|
2392
|
+
@winrt_factorymethod
|
|
2393
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewBaseAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer: ...
|
|
2394
|
+
@winrt_mixinmethod
|
|
2395
|
+
def get_DropEffect(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IDropTargetProvider) -> WinRT_String: ...
|
|
2396
|
+
@winrt_mixinmethod
|
|
2397
|
+
def get_DropEffects(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IDropTargetProvider) -> ReceiveArray[WinRT_String]: ...
|
|
2398
|
+
DropEffect = property(get_DropEffect, None)
|
|
2399
|
+
DropEffects = property(get_DropEffects, None)
|
|
2400
|
+
class ListViewBaseHeaderItemAutomationPeer(ComPtr):
|
|
2401
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2402
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewBaseHeaderItemAutomationPeer
|
|
2403
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer'
|
|
2404
|
+
def __init__(self, *args, **kwargs):
|
|
2405
|
+
if kwargs:
|
|
2406
|
+
super().__init__(**kwargs)
|
|
2407
|
+
elif len(args) == 1:
|
|
2408
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2409
|
+
else:
|
|
2410
|
+
raise ValueError('no matched constructor')
|
|
2411
|
+
@winrt_factorymethod
|
|
2412
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewBaseHeaderItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewBaseHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer: ...
|
|
2413
|
+
class ListViewHeaderItemAutomationPeer(ComPtr):
|
|
2414
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseHeaderItemAutomationPeer
|
|
2415
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewHeaderItemAutomationPeer
|
|
2416
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewHeaderItemAutomationPeer'
|
|
2417
|
+
def __init__(self, *args, **kwargs):
|
|
2418
|
+
if kwargs:
|
|
2419
|
+
super().__init__(**kwargs)
|
|
2420
|
+
elif len(args) == 1:
|
|
2421
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewHeaderItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2422
|
+
else:
|
|
2423
|
+
raise ValueError('no matched constructor')
|
|
2424
|
+
@winrt_factorymethod
|
|
2425
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewHeaderItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewHeaderItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewHeaderItemAutomationPeer: ...
|
|
2426
|
+
class ListViewItemAutomationPeer(ComPtr):
|
|
2427
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2428
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewItemAutomationPeer
|
|
2429
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer'
|
|
2430
|
+
def __init__(self, *args, **kwargs):
|
|
2431
|
+
if kwargs:
|
|
2432
|
+
super().__init__(**kwargs)
|
|
2433
|
+
elif len(args) == 1:
|
|
2434
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2435
|
+
else:
|
|
2436
|
+
raise ValueError('no matched constructor')
|
|
2437
|
+
@winrt_factorymethod
|
|
2438
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ListViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer: ...
|
|
2439
|
+
class ListViewItemDataAutomationPeer(ComPtr):
|
|
2440
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer
|
|
2441
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewItemDataAutomationPeer
|
|
2442
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ListViewItemDataAutomationPeer'
|
|
2443
|
+
def __init__(self, *args, **kwargs):
|
|
2444
|
+
if kwargs:
|
|
2445
|
+
super().__init__(**kwargs)
|
|
2446
|
+
elif len(args) == 2:
|
|
2447
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
2448
|
+
else:
|
|
2449
|
+
raise ValueError('no matched constructor')
|
|
2450
|
+
@winrt_factorymethod
|
|
2451
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IListViewItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewBaseAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemDataAutomationPeer: ...
|
|
2452
|
+
@winrt_mixinmethod
|
|
2453
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
2454
|
+
class LoopingSelectorAutomationPeer(ComPtr):
|
|
2455
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2456
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorAutomationPeer
|
|
2457
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.LoopingSelectorAutomationPeer'
|
|
2458
|
+
@winrt_mixinmethod
|
|
2459
|
+
def get_CanSelectMultiple(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2460
|
+
@winrt_mixinmethod
|
|
2461
|
+
def get_IsSelectionRequired(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2462
|
+
@winrt_mixinmethod
|
|
2463
|
+
def GetSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple]: ...
|
|
2464
|
+
@winrt_mixinmethod
|
|
2465
|
+
def FindItemByProperty(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IItemContainerProvider, startAfter: win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple, automationProperty: win32more.Microsoft.UI.Xaml.Automation.AutomationProperty, value: IInspectable) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2466
|
+
@winrt_mixinmethod
|
|
2467
|
+
def get_HorizontallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
2468
|
+
@winrt_mixinmethod
|
|
2469
|
+
def get_HorizontalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2470
|
+
@winrt_mixinmethod
|
|
2471
|
+
def get_HorizontalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2472
|
+
@winrt_mixinmethod
|
|
2473
|
+
def get_VerticallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
2474
|
+
@winrt_mixinmethod
|
|
2475
|
+
def get_VerticalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2476
|
+
@winrt_mixinmethod
|
|
2477
|
+
def get_VerticalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2478
|
+
@winrt_mixinmethod
|
|
2479
|
+
def Scroll(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount, verticalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount) -> Void: ...
|
|
2480
|
+
@winrt_mixinmethod
|
|
2481
|
+
def SetScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalPercent: Double, verticalPercent: Double) -> Void: ...
|
|
2482
|
+
CanSelectMultiple = property(get_CanSelectMultiple, None)
|
|
2483
|
+
HorizontalScrollPercent = property(get_HorizontalScrollPercent, None)
|
|
2484
|
+
HorizontalViewSize = property(get_HorizontalViewSize, None)
|
|
2485
|
+
HorizontallyScrollable = property(get_HorizontallyScrollable, None)
|
|
2486
|
+
IsSelectionRequired = property(get_IsSelectionRequired, None)
|
|
2487
|
+
VerticalScrollPercent = property(get_VerticalScrollPercent, None)
|
|
2488
|
+
VerticalViewSize = property(get_VerticalViewSize, None)
|
|
2489
|
+
VerticallyScrollable = property(get_VerticallyScrollable, None)
|
|
2490
|
+
class LoopingSelectorItemAutomationPeer(ComPtr):
|
|
2491
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2492
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorItemAutomationPeer
|
|
2493
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.LoopingSelectorItemAutomationPeer'
|
|
2494
|
+
@winrt_mixinmethod
|
|
2495
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
2496
|
+
@winrt_mixinmethod
|
|
2497
|
+
def get_IsSelected(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Boolean: ...
|
|
2498
|
+
@winrt_mixinmethod
|
|
2499
|
+
def get_SelectionContainer(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2500
|
+
@winrt_mixinmethod
|
|
2501
|
+
def AddToSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2502
|
+
@winrt_mixinmethod
|
|
2503
|
+
def RemoveFromSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2504
|
+
@winrt_mixinmethod
|
|
2505
|
+
def Select(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2506
|
+
IsSelected = property(get_IsSelected, None)
|
|
2507
|
+
SelectionContainer = property(get_SelectionContainer, None)
|
|
2508
|
+
class LoopingSelectorItemDataAutomationPeer(ComPtr):
|
|
2509
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.AutomationPeer
|
|
2510
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ILoopingSelectorItemDataAutomationPeer
|
|
2511
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.LoopingSelectorItemDataAutomationPeer'
|
|
2512
|
+
@winrt_mixinmethod
|
|
2513
|
+
def Realize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IVirtualizedItemProvider) -> Void: ...
|
|
2514
|
+
class MediaPlayerElementAutomationPeer(ComPtr):
|
|
2515
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2516
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMediaPlayerElementAutomationPeer
|
|
2517
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MediaPlayerElementAutomationPeer'
|
|
2518
|
+
def __init__(self, *args, **kwargs):
|
|
2519
|
+
if kwargs:
|
|
2520
|
+
super().__init__(**kwargs)
|
|
2521
|
+
elif len(args) == 1:
|
|
2522
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MediaPlayerElementAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2523
|
+
else:
|
|
2524
|
+
raise ValueError('no matched constructor')
|
|
2525
|
+
@winrt_factorymethod
|
|
2526
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMediaPlayerElementAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MediaPlayerElement, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MediaPlayerElementAutomationPeer: ...
|
|
2527
|
+
class MediaTransportControlsAutomationPeer(ComPtr):
|
|
2528
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2529
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMediaTransportControlsAutomationPeer
|
|
2530
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MediaTransportControlsAutomationPeer'
|
|
2531
|
+
def __init__(self, *args, **kwargs):
|
|
2532
|
+
if kwargs:
|
|
2533
|
+
super().__init__(**kwargs)
|
|
2534
|
+
elif len(args) == 1:
|
|
2535
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MediaTransportControlsAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2536
|
+
else:
|
|
2537
|
+
raise ValueError('no matched constructor')
|
|
2538
|
+
@winrt_factorymethod
|
|
2539
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMediaTransportControlsAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MediaTransportControls, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MediaTransportControlsAutomationPeer: ...
|
|
2540
|
+
class MenuBarAutomationPeer(ComPtr):
|
|
2541
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2542
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuBarAutomationPeer
|
|
2543
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MenuBarAutomationPeer'
|
|
2544
|
+
def __init__(self, *args, **kwargs):
|
|
2545
|
+
if kwargs:
|
|
2546
|
+
super().__init__(**kwargs)
|
|
2547
|
+
elif len(args) == 1:
|
|
2548
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarAutomationPeer.CreateInstance(*args, None, None))
|
|
2549
|
+
else:
|
|
2550
|
+
raise ValueError('no matched constructor')
|
|
2551
|
+
@winrt_factorymethod
|
|
2552
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuBarAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MenuBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarAutomationPeer: ...
|
|
2553
|
+
class MenuBarItemAutomationPeer(ComPtr):
|
|
2554
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2555
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuBarItemAutomationPeer
|
|
2556
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MenuBarItemAutomationPeer'
|
|
2557
|
+
def __init__(self, *args, **kwargs):
|
|
2558
|
+
if kwargs:
|
|
2559
|
+
super().__init__(**kwargs)
|
|
2560
|
+
elif len(args) == 1:
|
|
2561
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarItemAutomationPeer.CreateInstance(*args, None, None))
|
|
2562
|
+
else:
|
|
2563
|
+
raise ValueError('no matched constructor')
|
|
2564
|
+
@winrt_factorymethod
|
|
2565
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuBarItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MenuBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuBarItemAutomationPeer: ...
|
|
2566
|
+
@winrt_mixinmethod
|
|
2567
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
2568
|
+
@winrt_mixinmethod
|
|
2569
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
2570
|
+
@winrt_mixinmethod
|
|
2571
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
2572
|
+
@winrt_mixinmethod
|
|
2573
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
2574
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
2575
|
+
class MenuFlyoutItemAutomationPeer(ComPtr):
|
|
2576
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2577
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutItemAutomationPeer
|
|
2578
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutItemAutomationPeer'
|
|
2579
|
+
def __init__(self, *args, **kwargs):
|
|
2580
|
+
if kwargs:
|
|
2581
|
+
super().__init__(**kwargs)
|
|
2582
|
+
elif len(args) == 1:
|
|
2583
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2584
|
+
else:
|
|
2585
|
+
raise ValueError('no matched constructor')
|
|
2586
|
+
@winrt_factorymethod
|
|
2587
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MenuFlyoutItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutItemAutomationPeer: ...
|
|
2588
|
+
@winrt_mixinmethod
|
|
2589
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
2590
|
+
class MenuFlyoutPresenterAutomationPeer(ComPtr):
|
|
2591
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer
|
|
2592
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutPresenterAutomationPeer
|
|
2593
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutPresenterAutomationPeer'
|
|
2594
|
+
def __init__(self, *args, **kwargs):
|
|
2595
|
+
if kwargs:
|
|
2596
|
+
super().__init__(**kwargs)
|
|
2597
|
+
elif len(args) == 1:
|
|
2598
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutPresenterAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2599
|
+
else:
|
|
2600
|
+
raise ValueError('no matched constructor')
|
|
2601
|
+
@winrt_factorymethod
|
|
2602
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IMenuFlyoutPresenterAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.MenuFlyoutPresenter, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.MenuFlyoutPresenterAutomationPeer: ...
|
|
2603
|
+
class NavigationViewAutomationPeer(ComPtr):
|
|
2604
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2605
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.INavigationViewAutomationPeer
|
|
2606
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.NavigationViewAutomationPeer'
|
|
2607
|
+
def __init__(self, *args, **kwargs):
|
|
2608
|
+
if kwargs:
|
|
2609
|
+
super().__init__(**kwargs)
|
|
2610
|
+
elif len(args) == 1:
|
|
2611
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewAutomationPeer.CreateInstance(*args, None, None))
|
|
2612
|
+
else:
|
|
2613
|
+
raise ValueError('no matched constructor')
|
|
2614
|
+
@winrt_factorymethod
|
|
2615
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.INavigationViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.NavigationView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewAutomationPeer: ...
|
|
2616
|
+
class NavigationViewItemAutomationPeer(ComPtr):
|
|
2617
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2618
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.INavigationViewItemAutomationPeer
|
|
2619
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.NavigationViewItemAutomationPeer'
|
|
2620
|
+
def __init__(self, *args, **kwargs):
|
|
2621
|
+
if kwargs:
|
|
2622
|
+
super().__init__(**kwargs)
|
|
2623
|
+
elif len(args) == 1:
|
|
2624
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2625
|
+
else:
|
|
2626
|
+
raise ValueError('no matched constructor')
|
|
2627
|
+
@winrt_factorymethod
|
|
2628
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.INavigationViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.NavigationViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NavigationViewItemAutomationPeer: ...
|
|
2629
|
+
@winrt_mixinmethod
|
|
2630
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
2631
|
+
@winrt_mixinmethod
|
|
2632
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
2633
|
+
@winrt_mixinmethod
|
|
2634
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
2635
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
2636
|
+
class NumberBoxAutomationPeer(ComPtr):
|
|
2637
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2638
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.INumberBoxAutomationPeer
|
|
2639
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.NumberBoxAutomationPeer'
|
|
2640
|
+
def __init__(self, *args, **kwargs):
|
|
2641
|
+
if kwargs:
|
|
2642
|
+
super().__init__(**kwargs)
|
|
2643
|
+
elif len(args) == 1:
|
|
2644
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.NumberBoxAutomationPeer.CreateInstance(*args, None, None))
|
|
2645
|
+
else:
|
|
2646
|
+
raise ValueError('no matched constructor')
|
|
2647
|
+
@winrt_factorymethod
|
|
2648
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.INumberBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.NumberBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.NumberBoxAutomationPeer: ...
|
|
2649
|
+
class PasswordBoxAutomationPeer(ComPtr):
|
|
2650
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2651
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPasswordBoxAutomationPeer
|
|
2652
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PasswordBoxAutomationPeer'
|
|
2653
|
+
def __init__(self, *args, **kwargs):
|
|
2654
|
+
if kwargs:
|
|
2655
|
+
super().__init__(**kwargs)
|
|
2656
|
+
elif len(args) == 1:
|
|
2657
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PasswordBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2658
|
+
else:
|
|
2659
|
+
raise ValueError('no matched constructor')
|
|
2660
|
+
@winrt_factorymethod
|
|
2661
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPasswordBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.PasswordBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PasswordBoxAutomationPeer: ...
|
|
2662
|
+
class PatternInterface(Enum, Int32):
|
|
2663
|
+
Invoke = 0
|
|
2664
|
+
Selection = 1
|
|
2665
|
+
Value = 2
|
|
2666
|
+
RangeValue = 3
|
|
2667
|
+
Scroll = 4
|
|
2668
|
+
ScrollItem = 5
|
|
2669
|
+
ExpandCollapse = 6
|
|
2670
|
+
Grid = 7
|
|
2671
|
+
GridItem = 8
|
|
2672
|
+
MultipleView = 9
|
|
2673
|
+
Window = 10
|
|
2674
|
+
SelectionItem = 11
|
|
2675
|
+
Dock = 12
|
|
2676
|
+
Table = 13
|
|
2677
|
+
TableItem = 14
|
|
2678
|
+
Toggle = 15
|
|
2679
|
+
Transform = 16
|
|
2680
|
+
Text = 17
|
|
2681
|
+
ItemContainer = 18
|
|
2682
|
+
VirtualizedItem = 19
|
|
2683
|
+
Text2 = 20
|
|
2684
|
+
TextChild = 21
|
|
2685
|
+
TextRange = 22
|
|
2686
|
+
Annotation = 23
|
|
2687
|
+
Drag = 24
|
|
2688
|
+
DropTarget = 25
|
|
2689
|
+
ObjectModel = 26
|
|
2690
|
+
Spreadsheet = 27
|
|
2691
|
+
SpreadsheetItem = 28
|
|
2692
|
+
Styles = 29
|
|
2693
|
+
Transform2 = 30
|
|
2694
|
+
SynchronizedInput = 31
|
|
2695
|
+
TextEdit = 32
|
|
2696
|
+
CustomNavigation = 33
|
|
2697
|
+
class PersonPictureAutomationPeer(ComPtr):
|
|
2698
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2699
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPersonPictureAutomationPeer
|
|
2700
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PersonPictureAutomationPeer'
|
|
2701
|
+
def __init__(self, *args, **kwargs):
|
|
2702
|
+
if kwargs:
|
|
2703
|
+
super().__init__(**kwargs)
|
|
2704
|
+
elif len(args) == 1:
|
|
2705
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PersonPictureAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2706
|
+
else:
|
|
2707
|
+
raise ValueError('no matched constructor')
|
|
2708
|
+
@winrt_factorymethod
|
|
2709
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPersonPictureAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.PersonPicture, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PersonPictureAutomationPeer: ...
|
|
2710
|
+
class PickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
2711
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2712
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPickerFlyoutPresenterAutomationPeer
|
|
2713
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PickerFlyoutPresenterAutomationPeer'
|
|
2714
|
+
class PipsPagerAutomationPeer(ComPtr):
|
|
2715
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2716
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPipsPagerAutomationPeer
|
|
2717
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PipsPagerAutomationPeer'
|
|
2718
|
+
def __init__(self, *args, **kwargs):
|
|
2719
|
+
if kwargs:
|
|
2720
|
+
super().__init__(**kwargs)
|
|
2721
|
+
elif len(args) == 1:
|
|
2722
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PipsPagerAutomationPeer.CreateInstance(*args, None, None))
|
|
2723
|
+
else:
|
|
2724
|
+
raise ValueError('no matched constructor')
|
|
2725
|
+
@winrt_factorymethod
|
|
2726
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPipsPagerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.PipsPager, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PipsPagerAutomationPeer: ...
|
|
2727
|
+
class PivotAutomationPeer(ComPtr):
|
|
2728
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer
|
|
2729
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotAutomationPeer
|
|
2730
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer'
|
|
2731
|
+
def __init__(self, *args, **kwargs):
|
|
2732
|
+
if kwargs:
|
|
2733
|
+
super().__init__(**kwargs)
|
|
2734
|
+
elif len(args) == 1:
|
|
2735
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer.CreateInstanceWithOwner(*args))
|
|
2736
|
+
else:
|
|
2737
|
+
raise ValueError('no matched constructor')
|
|
2738
|
+
@winrt_factorymethod
|
|
2739
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Pivot) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer: ...
|
|
2740
|
+
@winrt_mixinmethod
|
|
2741
|
+
def get_CanSelectMultiple(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2742
|
+
@winrt_mixinmethod
|
|
2743
|
+
def get_IsSelectionRequired(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
2744
|
+
@winrt_mixinmethod
|
|
2745
|
+
def GetSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple]: ...
|
|
2746
|
+
@winrt_mixinmethod
|
|
2747
|
+
def get_HorizontallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
2748
|
+
@winrt_mixinmethod
|
|
2749
|
+
def get_HorizontalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2750
|
+
@winrt_mixinmethod
|
|
2751
|
+
def get_HorizontalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2752
|
+
@winrt_mixinmethod
|
|
2753
|
+
def get_VerticallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
2754
|
+
@winrt_mixinmethod
|
|
2755
|
+
def get_VerticalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2756
|
+
@winrt_mixinmethod
|
|
2757
|
+
def get_VerticalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
2758
|
+
@winrt_mixinmethod
|
|
2759
|
+
def Scroll(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount, verticalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount) -> Void: ...
|
|
2760
|
+
@winrt_mixinmethod
|
|
2761
|
+
def SetScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalPercent: Double, verticalPercent: Double) -> Void: ...
|
|
2762
|
+
CanSelectMultiple = property(get_CanSelectMultiple, None)
|
|
2763
|
+
HorizontalScrollPercent = property(get_HorizontalScrollPercent, None)
|
|
2764
|
+
HorizontalViewSize = property(get_HorizontalViewSize, None)
|
|
2765
|
+
HorizontallyScrollable = property(get_HorizontallyScrollable, None)
|
|
2766
|
+
IsSelectionRequired = property(get_IsSelectionRequired, None)
|
|
2767
|
+
VerticalScrollPercent = property(get_VerticalScrollPercent, None)
|
|
2768
|
+
VerticalViewSize = property(get_VerticalViewSize, None)
|
|
2769
|
+
VerticallyScrollable = property(get_VerticallyScrollable, None)
|
|
2770
|
+
class PivotItemAutomationPeer(ComPtr):
|
|
2771
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2772
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotItemAutomationPeer
|
|
2773
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PivotItemAutomationPeer'
|
|
2774
|
+
def __init__(self, *args, **kwargs):
|
|
2775
|
+
if kwargs:
|
|
2776
|
+
super().__init__(**kwargs)
|
|
2777
|
+
elif len(args) == 1:
|
|
2778
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemAutomationPeer.CreateInstanceWithOwner(*args))
|
|
2779
|
+
else:
|
|
2780
|
+
raise ValueError('no matched constructor')
|
|
2781
|
+
@winrt_factorymethod
|
|
2782
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.PivotItem) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemAutomationPeer: ...
|
|
2783
|
+
class PivotItemDataAutomationPeer(ComPtr):
|
|
2784
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer
|
|
2785
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotItemDataAutomationPeer
|
|
2786
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.PivotItemDataAutomationPeer'
|
|
2787
|
+
def __init__(self, *args, **kwargs):
|
|
2788
|
+
if kwargs:
|
|
2789
|
+
super().__init__(**kwargs)
|
|
2790
|
+
elif len(args) == 2:
|
|
2791
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemDataAutomationPeer.CreateInstanceWithParentAndItem(*args))
|
|
2792
|
+
else:
|
|
2793
|
+
raise ValueError('no matched constructor')
|
|
2794
|
+
@winrt_factorymethod
|
|
2795
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IPivotItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.PivotAutomationPeer) -> win32more.Microsoft.UI.Xaml.Automation.Peers.PivotItemDataAutomationPeer: ...
|
|
2796
|
+
@winrt_mixinmethod
|
|
2797
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollItemProvider) -> Void: ...
|
|
2798
|
+
@winrt_mixinmethod
|
|
2799
|
+
def get_IsSelected(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Boolean: ...
|
|
2800
|
+
@winrt_mixinmethod
|
|
2801
|
+
def get_SelectionContainer(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2802
|
+
@winrt_mixinmethod
|
|
2803
|
+
def AddToSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2804
|
+
@winrt_mixinmethod
|
|
2805
|
+
def RemoveFromSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2806
|
+
@winrt_mixinmethod
|
|
2807
|
+
def Select(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2808
|
+
@winrt_mixinmethod
|
|
2809
|
+
def Realize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IVirtualizedItemProvider) -> Void: ...
|
|
2810
|
+
IsSelected = property(get_IsSelected, None)
|
|
2811
|
+
SelectionContainer = property(get_SelectionContainer, None)
|
|
2812
|
+
class ProgressBarAutomationPeer(ComPtr):
|
|
2813
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer
|
|
2814
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IProgressBarAutomationPeer
|
|
2815
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ProgressBarAutomationPeer'
|
|
2816
|
+
def __init__(self, *args, **kwargs):
|
|
2817
|
+
if kwargs:
|
|
2818
|
+
super().__init__(**kwargs)
|
|
2819
|
+
elif len(args) == 1:
|
|
2820
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressBarAutomationPeer.CreateInstance(*args, None, None))
|
|
2821
|
+
else:
|
|
2822
|
+
raise ValueError('no matched constructor')
|
|
2823
|
+
@winrt_factorymethod
|
|
2824
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IProgressBarAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ProgressBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressBarAutomationPeer: ...
|
|
2825
|
+
class ProgressRingAutomationPeer(ComPtr):
|
|
2826
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2827
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IProgressRingAutomationPeer
|
|
2828
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ProgressRingAutomationPeer'
|
|
2829
|
+
def __init__(self, *args, **kwargs):
|
|
2830
|
+
if kwargs:
|
|
2831
|
+
super().__init__(**kwargs)
|
|
2832
|
+
elif len(args) == 1:
|
|
2833
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressRingAutomationPeer.CreateInstance(*args, None, None))
|
|
2834
|
+
else:
|
|
2835
|
+
raise ValueError('no matched constructor')
|
|
2836
|
+
@winrt_factorymethod
|
|
2837
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IProgressRingAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ProgressRing, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ProgressRingAutomationPeer: ...
|
|
2838
|
+
@winrt_mixinmethod
|
|
2839
|
+
def get_IsReadOnly(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Boolean: ...
|
|
2840
|
+
@winrt_mixinmethod
|
|
2841
|
+
def get_LargeChange(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2842
|
+
@winrt_mixinmethod
|
|
2843
|
+
def get_Maximum(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2844
|
+
@winrt_mixinmethod
|
|
2845
|
+
def get_Minimum(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2846
|
+
@winrt_mixinmethod
|
|
2847
|
+
def get_SmallChange(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2848
|
+
@winrt_mixinmethod
|
|
2849
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2850
|
+
@winrt_mixinmethod
|
|
2851
|
+
def SetValue(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider, value: Double) -> Void: ...
|
|
2852
|
+
IsReadOnly = property(get_IsReadOnly, None)
|
|
2853
|
+
LargeChange = property(get_LargeChange, None)
|
|
2854
|
+
Maximum = property(get_Maximum, None)
|
|
2855
|
+
Minimum = property(get_Minimum, None)
|
|
2856
|
+
SmallChange = property(get_SmallChange, None)
|
|
2857
|
+
Value = property(get_Value, None)
|
|
2858
|
+
class RadioButtonAutomationPeer(ComPtr):
|
|
2859
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer
|
|
2860
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRadioButtonAutomationPeer
|
|
2861
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RadioButtonAutomationPeer'
|
|
2862
|
+
def __init__(self, *args, **kwargs):
|
|
2863
|
+
if kwargs:
|
|
2864
|
+
super().__init__(**kwargs)
|
|
2865
|
+
elif len(args) == 1:
|
|
2866
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2867
|
+
else:
|
|
2868
|
+
raise ValueError('no matched constructor')
|
|
2869
|
+
@winrt_factorymethod
|
|
2870
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRadioButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RadioButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonAutomationPeer: ...
|
|
2871
|
+
@winrt_mixinmethod
|
|
2872
|
+
def get_IsSelected(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Boolean: ...
|
|
2873
|
+
@winrt_mixinmethod
|
|
2874
|
+
def get_SelectionContainer(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
2875
|
+
@winrt_mixinmethod
|
|
2876
|
+
def AddToSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2877
|
+
@winrt_mixinmethod
|
|
2878
|
+
def RemoveFromSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2879
|
+
@winrt_mixinmethod
|
|
2880
|
+
def Select(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
2881
|
+
IsSelected = property(get_IsSelected, None)
|
|
2882
|
+
SelectionContainer = property(get_SelectionContainer, None)
|
|
2883
|
+
class RadioButtonsAutomationPeer(ComPtr):
|
|
2884
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2885
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRadioButtonsAutomationPeer
|
|
2886
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RadioButtonsAutomationPeer'
|
|
2887
|
+
def __init__(self, *args, **kwargs):
|
|
2888
|
+
if kwargs:
|
|
2889
|
+
super().__init__(**kwargs)
|
|
2890
|
+
elif len(args) == 1:
|
|
2891
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonsAutomationPeer.CreateInstance(*args, None, None))
|
|
2892
|
+
else:
|
|
2893
|
+
raise ValueError('no matched constructor')
|
|
2894
|
+
@winrt_factorymethod
|
|
2895
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRadioButtonsAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RadioButtons, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RadioButtonsAutomationPeer: ...
|
|
2896
|
+
class RangeBaseAutomationPeer(ComPtr):
|
|
2897
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2898
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRangeBaseAutomationPeer
|
|
2899
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer'
|
|
2900
|
+
def __init__(self, *args, **kwargs):
|
|
2901
|
+
if kwargs:
|
|
2902
|
+
super().__init__(**kwargs)
|
|
2903
|
+
elif len(args) == 1:
|
|
2904
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2905
|
+
else:
|
|
2906
|
+
raise ValueError('no matched constructor')
|
|
2907
|
+
@winrt_factorymethod
|
|
2908
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRangeBaseAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.RangeBase, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer: ...
|
|
2909
|
+
@winrt_mixinmethod
|
|
2910
|
+
def get_IsReadOnly(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Boolean: ...
|
|
2911
|
+
@winrt_mixinmethod
|
|
2912
|
+
def get_LargeChange(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2913
|
+
@winrt_mixinmethod
|
|
2914
|
+
def get_Maximum(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2915
|
+
@winrt_mixinmethod
|
|
2916
|
+
def get_Minimum(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2917
|
+
@winrt_mixinmethod
|
|
2918
|
+
def get_SmallChange(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2919
|
+
@winrt_mixinmethod
|
|
2920
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider) -> Double: ...
|
|
2921
|
+
@winrt_mixinmethod
|
|
2922
|
+
def SetValue(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IRangeValueProvider, value: Double) -> Void: ...
|
|
2923
|
+
IsReadOnly = property(get_IsReadOnly, None)
|
|
2924
|
+
LargeChange = property(get_LargeChange, None)
|
|
2925
|
+
Maximum = property(get_Maximum, None)
|
|
2926
|
+
Minimum = property(get_Minimum, None)
|
|
2927
|
+
SmallChange = property(get_SmallChange, None)
|
|
2928
|
+
Value = property(get_Value, None)
|
|
2929
|
+
class RatingControlAutomationPeer(ComPtr):
|
|
2930
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2931
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRatingControlAutomationPeer
|
|
2932
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RatingControlAutomationPeer'
|
|
2933
|
+
def __init__(self, *args, **kwargs):
|
|
2934
|
+
if kwargs:
|
|
2935
|
+
super().__init__(**kwargs)
|
|
2936
|
+
elif len(args) == 1:
|
|
2937
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RatingControlAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2938
|
+
else:
|
|
2939
|
+
raise ValueError('no matched constructor')
|
|
2940
|
+
@winrt_factorymethod
|
|
2941
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRatingControlAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RatingControl, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RatingControlAutomationPeer: ...
|
|
2942
|
+
class RawElementProviderRuntimeId(Structure):
|
|
2943
|
+
Part1: UInt32
|
|
2944
|
+
Part2: UInt32
|
|
2945
|
+
class RepeatButtonAutomationPeer(ComPtr):
|
|
2946
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer
|
|
2947
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRepeatButtonAutomationPeer
|
|
2948
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RepeatButtonAutomationPeer'
|
|
2949
|
+
def __init__(self, *args, **kwargs):
|
|
2950
|
+
if kwargs:
|
|
2951
|
+
super().__init__(**kwargs)
|
|
2952
|
+
elif len(args) == 1:
|
|
2953
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RepeatButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2954
|
+
else:
|
|
2955
|
+
raise ValueError('no matched constructor')
|
|
2956
|
+
@winrt_factorymethod
|
|
2957
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRepeatButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.RepeatButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RepeatButtonAutomationPeer: ...
|
|
2958
|
+
@winrt_mixinmethod
|
|
2959
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
2960
|
+
class RepeaterAutomationPeer(ComPtr):
|
|
2961
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2962
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRepeaterAutomationPeer
|
|
2963
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RepeaterAutomationPeer'
|
|
2964
|
+
def __init__(self, *args, **kwargs):
|
|
2965
|
+
if kwargs:
|
|
2966
|
+
super().__init__(**kwargs)
|
|
2967
|
+
elif len(args) == 1:
|
|
2968
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RepeaterAutomationPeer.CreateInstance(*args, None, None))
|
|
2969
|
+
else:
|
|
2970
|
+
raise ValueError('no matched constructor')
|
|
2971
|
+
@winrt_factorymethod
|
|
2972
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRepeaterAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ItemsRepeater, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RepeaterAutomationPeer: ...
|
|
2973
|
+
class RichEditBoxAutomationPeer(ComPtr):
|
|
2974
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2975
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichEditBoxAutomationPeer
|
|
2976
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RichEditBoxAutomationPeer'
|
|
2977
|
+
def __init__(self, *args, **kwargs):
|
|
2978
|
+
if kwargs:
|
|
2979
|
+
super().__init__(**kwargs)
|
|
2980
|
+
elif len(args) == 1:
|
|
2981
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RichEditBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2982
|
+
else:
|
|
2983
|
+
raise ValueError('no matched constructor')
|
|
2984
|
+
@winrt_factorymethod
|
|
2985
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichEditBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RichEditBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichEditBoxAutomationPeer: ...
|
|
2986
|
+
class RichTextBlockAutomationPeer(ComPtr):
|
|
2987
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
2988
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockAutomationPeer
|
|
2989
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RichTextBlockAutomationPeer'
|
|
2990
|
+
def __init__(self, *args, **kwargs):
|
|
2991
|
+
if kwargs:
|
|
2992
|
+
super().__init__(**kwargs)
|
|
2993
|
+
elif len(args) == 1:
|
|
2994
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
2995
|
+
else:
|
|
2996
|
+
raise ValueError('no matched constructor')
|
|
2997
|
+
@winrt_factorymethod
|
|
2998
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RichTextBlock, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockAutomationPeer: ...
|
|
2999
|
+
class RichTextBlockOverflowAutomationPeer(ComPtr):
|
|
3000
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3001
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockOverflowAutomationPeer
|
|
3002
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.RichTextBlockOverflowAutomationPeer'
|
|
3003
|
+
def __init__(self, *args, **kwargs):
|
|
3004
|
+
if kwargs:
|
|
3005
|
+
super().__init__(**kwargs)
|
|
3006
|
+
elif len(args) == 1:
|
|
3007
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockOverflowAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3008
|
+
else:
|
|
3009
|
+
raise ValueError('no matched constructor')
|
|
3010
|
+
@winrt_factorymethod
|
|
3011
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IRichTextBlockOverflowAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.RichTextBlockOverflow, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.RichTextBlockOverflowAutomationPeer: ...
|
|
3012
|
+
class ScrollBarAutomationPeer(ComPtr):
|
|
3013
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer
|
|
3014
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IScrollBarAutomationPeer
|
|
3015
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ScrollBarAutomationPeer'
|
|
3016
|
+
def __init__(self, *args, **kwargs):
|
|
3017
|
+
if kwargs:
|
|
3018
|
+
super().__init__(**kwargs)
|
|
3019
|
+
elif len(args) == 1:
|
|
3020
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollBarAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3021
|
+
else:
|
|
3022
|
+
raise ValueError('no matched constructor')
|
|
3023
|
+
@winrt_factorymethod
|
|
3024
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IScrollBarAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ScrollBar, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollBarAutomationPeer: ...
|
|
3025
|
+
class ScrollViewerAutomationPeer(ComPtr):
|
|
3026
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3027
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IScrollViewerAutomationPeer
|
|
3028
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ScrollViewerAutomationPeer'
|
|
3029
|
+
def __init__(self, *args, **kwargs):
|
|
3030
|
+
if kwargs:
|
|
3031
|
+
super().__init__(**kwargs)
|
|
3032
|
+
elif len(args) == 1:
|
|
3033
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollViewerAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3034
|
+
else:
|
|
3035
|
+
raise ValueError('no matched constructor')
|
|
3036
|
+
@winrt_factorymethod
|
|
3037
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IScrollViewerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ScrollViewer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ScrollViewerAutomationPeer: ...
|
|
3038
|
+
@winrt_mixinmethod
|
|
3039
|
+
def get_HorizontallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
3040
|
+
@winrt_mixinmethod
|
|
3041
|
+
def get_HorizontalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
3042
|
+
@winrt_mixinmethod
|
|
3043
|
+
def get_HorizontalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
3044
|
+
@winrt_mixinmethod
|
|
3045
|
+
def get_VerticallyScrollable(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Boolean: ...
|
|
3046
|
+
@winrt_mixinmethod
|
|
3047
|
+
def get_VerticalScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
3048
|
+
@winrt_mixinmethod
|
|
3049
|
+
def get_VerticalViewSize(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider) -> Double: ...
|
|
3050
|
+
@winrt_mixinmethod
|
|
3051
|
+
def Scroll(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount, verticalAmount: win32more.Microsoft.UI.Xaml.Automation.ScrollAmount) -> Void: ...
|
|
3052
|
+
@winrt_mixinmethod
|
|
3053
|
+
def SetScrollPercent(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IScrollProvider, horizontalPercent: Double, verticalPercent: Double) -> Void: ...
|
|
3054
|
+
HorizontalScrollPercent = property(get_HorizontalScrollPercent, None)
|
|
3055
|
+
HorizontalViewSize = property(get_HorizontalViewSize, None)
|
|
3056
|
+
HorizontallyScrollable = property(get_HorizontallyScrollable, None)
|
|
3057
|
+
VerticalScrollPercent = property(get_VerticalScrollPercent, None)
|
|
3058
|
+
VerticalViewSize = property(get_VerticalViewSize, None)
|
|
3059
|
+
VerticallyScrollable = property(get_VerticallyScrollable, None)
|
|
3060
|
+
class SelectorAutomationPeer(ComPtr):
|
|
3061
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemsControlAutomationPeer
|
|
3062
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorAutomationPeer
|
|
3063
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer'
|
|
3064
|
+
def __init__(self, *args, **kwargs):
|
|
3065
|
+
if kwargs:
|
|
3066
|
+
super().__init__(**kwargs)
|
|
3067
|
+
elif len(args) == 1:
|
|
3068
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3069
|
+
else:
|
|
3070
|
+
raise ValueError('no matched constructor')
|
|
3071
|
+
@winrt_factorymethod
|
|
3072
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.Selector, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer: ...
|
|
3073
|
+
@winrt_mixinmethod
|
|
3074
|
+
def get_CanSelectMultiple(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
3075
|
+
@winrt_mixinmethod
|
|
3076
|
+
def get_IsSelectionRequired(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> Boolean: ...
|
|
3077
|
+
@winrt_mixinmethod
|
|
3078
|
+
def GetSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionProvider) -> ReceiveArray[win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple]: ...
|
|
3079
|
+
CanSelectMultiple = property(get_CanSelectMultiple, None)
|
|
3080
|
+
IsSelectionRequired = property(get_IsSelectionRequired, None)
|
|
3081
|
+
class SelectorBarItemAutomationPeer(ComPtr):
|
|
3082
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemContainerAutomationPeer
|
|
3083
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorBarItemAutomationPeer
|
|
3084
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SelectorBarItemAutomationPeer'
|
|
3085
|
+
def __init__(self, *args, **kwargs):
|
|
3086
|
+
if kwargs:
|
|
3087
|
+
super().__init__(**kwargs)
|
|
3088
|
+
elif len(args) == 1:
|
|
3089
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorBarItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3090
|
+
else:
|
|
3091
|
+
raise ValueError('no matched constructor')
|
|
3092
|
+
@winrt_factorymethod
|
|
3093
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorBarItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.SelectorBarItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorBarItemAutomationPeer: ...
|
|
3094
|
+
class SelectorItemAutomationPeer(ComPtr):
|
|
3095
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer
|
|
3096
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorItemAutomationPeer
|
|
3097
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer'
|
|
3098
|
+
def __init__(self, *args, **kwargs):
|
|
3099
|
+
if kwargs:
|
|
3100
|
+
super().__init__(**kwargs)
|
|
3101
|
+
elif len(args) == 2:
|
|
3102
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer.CreateInstanceWithParentAndItem(*args, None, None))
|
|
3103
|
+
else:
|
|
3104
|
+
raise ValueError('no matched constructor')
|
|
3105
|
+
@winrt_factorymethod
|
|
3106
|
+
def CreateInstanceWithParentAndItem(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISelectorItemAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SelectorItemAutomationPeer: ...
|
|
3107
|
+
@winrt_mixinmethod
|
|
3108
|
+
def get_IsSelected(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Boolean: ...
|
|
3109
|
+
@winrt_mixinmethod
|
|
3110
|
+
def get_SelectionContainer(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> win32more.Microsoft.UI.Xaml.Automation.Provider.IRawElementProviderSimple: ...
|
|
3111
|
+
@winrt_mixinmethod
|
|
3112
|
+
def AddToSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
3113
|
+
@winrt_mixinmethod
|
|
3114
|
+
def RemoveFromSelection(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
3115
|
+
@winrt_mixinmethod
|
|
3116
|
+
def Select(self: win32more.Microsoft.UI.Xaml.Automation.Provider.ISelectionItemProvider) -> Void: ...
|
|
3117
|
+
IsSelected = property(get_IsSelected, None)
|
|
3118
|
+
SelectionContainer = property(get_SelectionContainer, None)
|
|
3119
|
+
class SemanticZoomAutomationPeer(ComPtr):
|
|
3120
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3121
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISemanticZoomAutomationPeer
|
|
3122
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SemanticZoomAutomationPeer'
|
|
3123
|
+
def __init__(self, *args, **kwargs):
|
|
3124
|
+
if kwargs:
|
|
3125
|
+
super().__init__(**kwargs)
|
|
3126
|
+
elif len(args) == 1:
|
|
3127
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SemanticZoomAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3128
|
+
else:
|
|
3129
|
+
raise ValueError('no matched constructor')
|
|
3130
|
+
@winrt_factorymethod
|
|
3131
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISemanticZoomAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.SemanticZoom, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SemanticZoomAutomationPeer: ...
|
|
3132
|
+
@winrt_mixinmethod
|
|
3133
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
3134
|
+
@winrt_mixinmethod
|
|
3135
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
3136
|
+
ToggleState = property(get_ToggleState, None)
|
|
3137
|
+
class SliderAutomationPeer(ComPtr):
|
|
3138
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.RangeBaseAutomationPeer
|
|
3139
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISliderAutomationPeer
|
|
3140
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SliderAutomationPeer'
|
|
3141
|
+
def __init__(self, *args, **kwargs):
|
|
3142
|
+
if kwargs:
|
|
3143
|
+
super().__init__(**kwargs)
|
|
3144
|
+
elif len(args) == 1:
|
|
3145
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SliderAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3146
|
+
else:
|
|
3147
|
+
raise ValueError('no matched constructor')
|
|
3148
|
+
@winrt_factorymethod
|
|
3149
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISliderAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Slider, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SliderAutomationPeer: ...
|
|
3150
|
+
class SplitButtonAutomationPeer(ComPtr):
|
|
3151
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3152
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ISplitButtonAutomationPeer
|
|
3153
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.SplitButtonAutomationPeer'
|
|
3154
|
+
def __init__(self, *args, **kwargs):
|
|
3155
|
+
if kwargs:
|
|
3156
|
+
super().__init__(**kwargs)
|
|
3157
|
+
elif len(args) == 1:
|
|
3158
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.SplitButtonAutomationPeer.CreateInstance(*args, None, None))
|
|
3159
|
+
else:
|
|
3160
|
+
raise ValueError('no matched constructor')
|
|
3161
|
+
@winrt_factorymethod
|
|
3162
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ISplitButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.SplitButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.SplitButtonAutomationPeer: ...
|
|
3163
|
+
@winrt_mixinmethod
|
|
3164
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
3165
|
+
@winrt_mixinmethod
|
|
3166
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3167
|
+
@winrt_mixinmethod
|
|
3168
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3169
|
+
@winrt_mixinmethod
|
|
3170
|
+
def Invoke(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IInvokeProvider) -> Void: ...
|
|
3171
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
3172
|
+
class TabViewAutomationPeer(ComPtr):
|
|
3173
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3174
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITabViewAutomationPeer
|
|
3175
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TabViewAutomationPeer'
|
|
3176
|
+
def __init__(self, *args, **kwargs):
|
|
3177
|
+
if kwargs:
|
|
3178
|
+
super().__init__(**kwargs)
|
|
3179
|
+
elif len(args) == 1:
|
|
3180
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewAutomationPeer.CreateInstance(*args, None, None))
|
|
3181
|
+
else:
|
|
3182
|
+
raise ValueError('no matched constructor')
|
|
3183
|
+
@winrt_factorymethod
|
|
3184
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITabViewAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TabView, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewAutomationPeer: ...
|
|
3185
|
+
class TabViewItemAutomationPeer(ComPtr):
|
|
3186
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer
|
|
3187
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITabViewItemAutomationPeer
|
|
3188
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TabViewItemAutomationPeer'
|
|
3189
|
+
def __init__(self, *args, **kwargs):
|
|
3190
|
+
if kwargs:
|
|
3191
|
+
super().__init__(**kwargs)
|
|
3192
|
+
elif len(args) == 1:
|
|
3193
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewItemAutomationPeer.CreateInstance(*args, None, None))
|
|
3194
|
+
else:
|
|
3195
|
+
raise ValueError('no matched constructor')
|
|
3196
|
+
@winrt_factorymethod
|
|
3197
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITabViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TabViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TabViewItemAutomationPeer: ...
|
|
3198
|
+
class TeachingTipAutomationPeer(ComPtr):
|
|
3199
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3200
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITeachingTipAutomationPeer
|
|
3201
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TeachingTipAutomationPeer'
|
|
3202
|
+
def __init__(self, *args, **kwargs):
|
|
3203
|
+
if kwargs:
|
|
3204
|
+
super().__init__(**kwargs)
|
|
3205
|
+
elif len(args) == 1:
|
|
3206
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TeachingTipAutomationPeer.CreateInstance(*args, None, None))
|
|
3207
|
+
else:
|
|
3208
|
+
raise ValueError('no matched constructor')
|
|
3209
|
+
@winrt_factorymethod
|
|
3210
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITeachingTipAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TeachingTip, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TeachingTipAutomationPeer: ...
|
|
3211
|
+
class TextBlockAutomationPeer(ComPtr):
|
|
3212
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3213
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITextBlockAutomationPeer
|
|
3214
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TextBlockAutomationPeer'
|
|
3215
|
+
def __init__(self, *args, **kwargs):
|
|
3216
|
+
if kwargs:
|
|
3217
|
+
super().__init__(**kwargs)
|
|
3218
|
+
elif len(args) == 1:
|
|
3219
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TextBlockAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3220
|
+
else:
|
|
3221
|
+
raise ValueError('no matched constructor')
|
|
3222
|
+
@winrt_factorymethod
|
|
3223
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITextBlockAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TextBlock, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TextBlockAutomationPeer: ...
|
|
3224
|
+
class TextBoxAutomationPeer(ComPtr):
|
|
3225
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3226
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITextBoxAutomationPeer
|
|
3227
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TextBoxAutomationPeer'
|
|
3228
|
+
def __init__(self, *args, **kwargs):
|
|
3229
|
+
if kwargs:
|
|
3230
|
+
super().__init__(**kwargs)
|
|
3231
|
+
elif len(args) == 1:
|
|
3232
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TextBoxAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3233
|
+
else:
|
|
3234
|
+
raise ValueError('no matched constructor')
|
|
3235
|
+
@winrt_factorymethod
|
|
3236
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITextBoxAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TextBox, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TextBoxAutomationPeer: ...
|
|
3237
|
+
class ThumbAutomationPeer(ComPtr):
|
|
3238
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3239
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IThumbAutomationPeer
|
|
3240
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ThumbAutomationPeer'
|
|
3241
|
+
def __init__(self, *args, **kwargs):
|
|
3242
|
+
if kwargs:
|
|
3243
|
+
super().__init__(**kwargs)
|
|
3244
|
+
elif len(args) == 1:
|
|
3245
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ThumbAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3246
|
+
else:
|
|
3247
|
+
raise ValueError('no matched constructor')
|
|
3248
|
+
@winrt_factorymethod
|
|
3249
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IThumbAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.Thumb, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ThumbAutomationPeer: ...
|
|
3250
|
+
class TimePickerAutomationPeer(ComPtr):
|
|
3251
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3252
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITimePickerAutomationPeer
|
|
3253
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TimePickerAutomationPeer'
|
|
3254
|
+
def __init__(self, *args, **kwargs):
|
|
3255
|
+
if kwargs:
|
|
3256
|
+
super().__init__(**kwargs)
|
|
3257
|
+
elif len(args) == 1:
|
|
3258
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TimePickerAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3259
|
+
else:
|
|
3260
|
+
raise ValueError('no matched constructor')
|
|
3261
|
+
@winrt_factorymethod
|
|
3262
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITimePickerAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TimePicker, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TimePickerAutomationPeer: ...
|
|
3263
|
+
class TimePickerFlyoutPresenterAutomationPeer(ComPtr):
|
|
3264
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3265
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITimePickerFlyoutPresenterAutomationPeer
|
|
3266
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TimePickerFlyoutPresenterAutomationPeer'
|
|
3267
|
+
class ToggleButtonAutomationPeer(ComPtr):
|
|
3268
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ButtonBaseAutomationPeer
|
|
3269
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleButtonAutomationPeer
|
|
3270
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer'
|
|
3271
|
+
def __init__(self, *args, **kwargs):
|
|
3272
|
+
if kwargs:
|
|
3273
|
+
super().__init__(**kwargs)
|
|
3274
|
+
elif len(args) == 1:
|
|
3275
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3276
|
+
else:
|
|
3277
|
+
raise ValueError('no matched constructor')
|
|
3278
|
+
@winrt_factorymethod
|
|
3279
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.Primitives.ToggleButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleButtonAutomationPeer: ...
|
|
3280
|
+
@winrt_mixinmethod
|
|
3281
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
3282
|
+
@winrt_mixinmethod
|
|
3283
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
3284
|
+
ToggleState = property(get_ToggleState, None)
|
|
3285
|
+
class ToggleMenuFlyoutItemAutomationPeer(ComPtr):
|
|
3286
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3287
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleMenuFlyoutItemAutomationPeer
|
|
3288
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ToggleMenuFlyoutItemAutomationPeer'
|
|
3289
|
+
def __init__(self, *args, **kwargs):
|
|
3290
|
+
if kwargs:
|
|
3291
|
+
super().__init__(**kwargs)
|
|
3292
|
+
elif len(args) == 1:
|
|
3293
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleMenuFlyoutItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3294
|
+
else:
|
|
3295
|
+
raise ValueError('no matched constructor')
|
|
3296
|
+
@winrt_factorymethod
|
|
3297
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleMenuFlyoutItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleMenuFlyoutItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleMenuFlyoutItemAutomationPeer: ...
|
|
3298
|
+
@winrt_mixinmethod
|
|
3299
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
3300
|
+
@winrt_mixinmethod
|
|
3301
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
3302
|
+
ToggleState = property(get_ToggleState, None)
|
|
3303
|
+
class ToggleSplitButtonAutomationPeer(ComPtr):
|
|
3304
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3305
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleSplitButtonAutomationPeer
|
|
3306
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ToggleSplitButtonAutomationPeer'
|
|
3307
|
+
def __init__(self, *args, **kwargs):
|
|
3308
|
+
if kwargs:
|
|
3309
|
+
super().__init__(**kwargs)
|
|
3310
|
+
elif len(args) == 1:
|
|
3311
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSplitButtonAutomationPeer.CreateInstance(*args, None, None))
|
|
3312
|
+
else:
|
|
3313
|
+
raise ValueError('no matched constructor')
|
|
3314
|
+
@winrt_factorymethod
|
|
3315
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleSplitButtonAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleSplitButton, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSplitButtonAutomationPeer: ...
|
|
3316
|
+
@winrt_mixinmethod
|
|
3317
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
3318
|
+
@winrt_mixinmethod
|
|
3319
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3320
|
+
@winrt_mixinmethod
|
|
3321
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3322
|
+
@winrt_mixinmethod
|
|
3323
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
3324
|
+
@winrt_mixinmethod
|
|
3325
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
3326
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
3327
|
+
ToggleState = property(get_ToggleState, None)
|
|
3328
|
+
class ToggleSwitchAutomationPeer(ComPtr):
|
|
3329
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3330
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleSwitchAutomationPeer
|
|
3331
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.ToggleSwitchAutomationPeer'
|
|
3332
|
+
def __init__(self, *args, **kwargs):
|
|
3333
|
+
if kwargs:
|
|
3334
|
+
super().__init__(**kwargs)
|
|
3335
|
+
elif len(args) == 1:
|
|
3336
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSwitchAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3337
|
+
else:
|
|
3338
|
+
raise ValueError('no matched constructor')
|
|
3339
|
+
@winrt_factorymethod
|
|
3340
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IToggleSwitchAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.ToggleSwitch, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.ToggleSwitchAutomationPeer: ...
|
|
3341
|
+
@winrt_mixinmethod
|
|
3342
|
+
def get_ToggleState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> win32more.Microsoft.UI.Xaml.Automation.ToggleState: ...
|
|
3343
|
+
@winrt_mixinmethod
|
|
3344
|
+
def Toggle(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IToggleProvider) -> Void: ...
|
|
3345
|
+
ToggleState = property(get_ToggleState, None)
|
|
3346
|
+
class TreeViewItemAutomationPeer(ComPtr):
|
|
3347
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewItemAutomationPeer
|
|
3348
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemAutomationPeer
|
|
3349
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TreeViewItemAutomationPeer'
|
|
3350
|
+
def __init__(self, *args, **kwargs):
|
|
3351
|
+
if kwargs:
|
|
3352
|
+
super().__init__(**kwargs)
|
|
3353
|
+
elif len(args) == 1:
|
|
3354
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3355
|
+
else:
|
|
3356
|
+
raise ValueError('no matched constructor')
|
|
3357
|
+
@winrt_factorymethod
|
|
3358
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TreeViewItem, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemAutomationPeer: ...
|
|
3359
|
+
@winrt_mixinmethod
|
|
3360
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
3361
|
+
@winrt_mixinmethod
|
|
3362
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3363
|
+
@winrt_mixinmethod
|
|
3364
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3365
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
3366
|
+
class TreeViewItemDataAutomationPeer(ComPtr):
|
|
3367
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ItemAutomationPeer
|
|
3368
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemDataAutomationPeer
|
|
3369
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TreeViewItemDataAutomationPeer'
|
|
3370
|
+
def __init__(self, *args, **kwargs):
|
|
3371
|
+
if kwargs:
|
|
3372
|
+
super().__init__(**kwargs)
|
|
3373
|
+
elif len(args) == 2:
|
|
3374
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemDataAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3375
|
+
else:
|
|
3376
|
+
raise ValueError('no matched constructor')
|
|
3377
|
+
@winrt_factorymethod
|
|
3378
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewItemDataAutomationPeerFactory, item: IInspectable, parent: win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewItemDataAutomationPeer: ...
|
|
3379
|
+
@winrt_mixinmethod
|
|
3380
|
+
def get_ExpandCollapseState(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> win32more.Microsoft.UI.Xaml.Automation.ExpandCollapseState: ...
|
|
3381
|
+
@winrt_mixinmethod
|
|
3382
|
+
def Collapse(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3383
|
+
@winrt_mixinmethod
|
|
3384
|
+
def Expand(self: win32more.Microsoft.UI.Xaml.Automation.Provider.IExpandCollapseProvider) -> Void: ...
|
|
3385
|
+
ExpandCollapseState = property(get_ExpandCollapseState, None)
|
|
3386
|
+
class TreeViewListAutomationPeer(ComPtr):
|
|
3387
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.ListViewAutomationPeer
|
|
3388
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewListAutomationPeer
|
|
3389
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer'
|
|
3390
|
+
def __init__(self, *args, **kwargs):
|
|
3391
|
+
if kwargs:
|
|
3392
|
+
super().__init__(**kwargs)
|
|
3393
|
+
elif len(args) == 1:
|
|
3394
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer.CreateInstanceWithOwner(*args, None, None))
|
|
3395
|
+
else:
|
|
3396
|
+
raise ValueError('no matched constructor')
|
|
3397
|
+
@winrt_factorymethod
|
|
3398
|
+
def CreateInstanceWithOwner(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.ITreeViewListAutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.TreeViewList, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.TreeViewListAutomationPeer: ...
|
|
3399
|
+
class WebView2AutomationPeer(ComPtr):
|
|
3400
|
+
extends: win32more.Microsoft.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer
|
|
3401
|
+
default_interface: win32more.Microsoft.UI.Xaml.Automation.Peers.IWebView2AutomationPeer
|
|
3402
|
+
_classid_ = 'Microsoft.UI.Xaml.Automation.Peers.WebView2AutomationPeer'
|
|
3403
|
+
def __init__(self, *args, **kwargs):
|
|
3404
|
+
if kwargs:
|
|
3405
|
+
super().__init__(**kwargs)
|
|
3406
|
+
elif len(args) == 1:
|
|
3407
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Automation.Peers.WebView2AutomationPeer.CreateInstance(*args, None, None))
|
|
3408
|
+
else:
|
|
3409
|
+
raise ValueError('no matched constructor')
|
|
3410
|
+
@winrt_factorymethod
|
|
3411
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Automation.Peers.IWebView2AutomationPeerFactory, owner: win32more.Microsoft.UI.Xaml.Controls.WebView2, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Automation.Peers.WebView2AutomationPeer: ...
|
|
3412
|
+
|
|
3413
|
+
|
|
3414
|
+
make_ready(__name__)
|