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,2030 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Xaml
|
|
4
|
+
import win32more.Microsoft.UI.Xaml.Documents
|
|
5
|
+
import win32more.Microsoft.UI.Xaml.Input
|
|
6
|
+
import win32more.Microsoft.UI.Xaml.Media
|
|
7
|
+
import win32more.Windows.Foundation
|
|
8
|
+
import win32more.Windows.Foundation.Collections
|
|
9
|
+
import win32more.Windows.UI.Text
|
|
10
|
+
class _Block_Meta_(ComPtr.__class__):
|
|
11
|
+
pass
|
|
12
|
+
class Block(ComPtr, metaclass=_Block_Meta_):
|
|
13
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.TextElement
|
|
14
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IBlock
|
|
15
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Block'
|
|
16
|
+
def __init__(self, *args, **kwargs):
|
|
17
|
+
if kwargs:
|
|
18
|
+
super().__init__(**kwargs)
|
|
19
|
+
elif len(args) == 0:
|
|
20
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Block.CreateInstance(*args, None, None))
|
|
21
|
+
else:
|
|
22
|
+
raise ValueError('no matched constructor')
|
|
23
|
+
@winrt_factorymethod
|
|
24
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Block: ...
|
|
25
|
+
@winrt_mixinmethod
|
|
26
|
+
def get_TextAlignment(self: win32more.Microsoft.UI.Xaml.Documents.IBlock) -> win32more.Microsoft.UI.Xaml.TextAlignment: ...
|
|
27
|
+
@winrt_mixinmethod
|
|
28
|
+
def put_TextAlignment(self: win32more.Microsoft.UI.Xaml.Documents.IBlock, value: win32more.Microsoft.UI.Xaml.TextAlignment) -> Void: ...
|
|
29
|
+
@winrt_mixinmethod
|
|
30
|
+
def get_HorizontalTextAlignment(self: win32more.Microsoft.UI.Xaml.Documents.IBlock) -> win32more.Microsoft.UI.Xaml.TextAlignment: ...
|
|
31
|
+
@winrt_mixinmethod
|
|
32
|
+
def put_HorizontalTextAlignment(self: win32more.Microsoft.UI.Xaml.Documents.IBlock, value: win32more.Microsoft.UI.Xaml.TextAlignment) -> Void: ...
|
|
33
|
+
@winrt_mixinmethod
|
|
34
|
+
def get_LineHeight(self: win32more.Microsoft.UI.Xaml.Documents.IBlock) -> Double: ...
|
|
35
|
+
@winrt_mixinmethod
|
|
36
|
+
def put_LineHeight(self: win32more.Microsoft.UI.Xaml.Documents.IBlock, value: Double) -> Void: ...
|
|
37
|
+
@winrt_mixinmethod
|
|
38
|
+
def get_LineStackingStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IBlock) -> win32more.Microsoft.UI.Xaml.LineStackingStrategy: ...
|
|
39
|
+
@winrt_mixinmethod
|
|
40
|
+
def put_LineStackingStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IBlock, value: win32more.Microsoft.UI.Xaml.LineStackingStrategy) -> Void: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def get_Margin(self: win32more.Microsoft.UI.Xaml.Documents.IBlock) -> win32more.Microsoft.UI.Xaml.Thickness: ...
|
|
43
|
+
@winrt_mixinmethod
|
|
44
|
+
def put_Margin(self: win32more.Microsoft.UI.Xaml.Documents.IBlock, value: win32more.Microsoft.UI.Xaml.Thickness) -> Void: ...
|
|
45
|
+
@winrt_classmethod
|
|
46
|
+
def get_TextAlignmentProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
47
|
+
@winrt_classmethod
|
|
48
|
+
def get_HorizontalTextAlignmentProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
49
|
+
@winrt_classmethod
|
|
50
|
+
def get_LineHeightProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
51
|
+
@winrt_classmethod
|
|
52
|
+
def get_LineStackingStrategyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
53
|
+
@winrt_classmethod
|
|
54
|
+
def get_MarginProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IBlockStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
55
|
+
HorizontalTextAlignment = property(get_HorizontalTextAlignment, put_HorizontalTextAlignment)
|
|
56
|
+
LineHeight = property(get_LineHeight, put_LineHeight)
|
|
57
|
+
LineStackingStrategy = property(get_LineStackingStrategy, put_LineStackingStrategy)
|
|
58
|
+
Margin = property(get_Margin, put_Margin)
|
|
59
|
+
TextAlignment = property(get_TextAlignment, put_TextAlignment)
|
|
60
|
+
_Block_Meta_.HorizontalTextAlignmentProperty = property(get_HorizontalTextAlignmentProperty, None)
|
|
61
|
+
_Block_Meta_.LineHeightProperty = property(get_LineHeightProperty, None)
|
|
62
|
+
_Block_Meta_.LineStackingStrategyProperty = property(get_LineStackingStrategyProperty, None)
|
|
63
|
+
_Block_Meta_.MarginProperty = property(get_MarginProperty, None)
|
|
64
|
+
_Block_Meta_.TextAlignmentProperty = property(get_TextAlignmentProperty, None)
|
|
65
|
+
class BlockCollection(ComPtr):
|
|
66
|
+
extends: IInspectable
|
|
67
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Documents.Block]]
|
|
68
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block]
|
|
69
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.BlockCollection'
|
|
70
|
+
@winrt_mixinmethod
|
|
71
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], index: UInt32) -> win32more.Microsoft.UI.Xaml.Documents.Block: ...
|
|
72
|
+
@winrt_mixinmethod
|
|
73
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block]) -> UInt32: ...
|
|
74
|
+
@winrt_mixinmethod
|
|
75
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Documents.Block]: ...
|
|
76
|
+
@winrt_mixinmethod
|
|
77
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], value: win32more.Microsoft.UI.Xaml.Documents.Block, index: POINTER(UInt32)) -> Boolean: ...
|
|
78
|
+
@winrt_mixinmethod
|
|
79
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], index: UInt32, value: win32more.Microsoft.UI.Xaml.Documents.Block) -> Void: ...
|
|
80
|
+
@winrt_mixinmethod
|
|
81
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], index: UInt32, value: win32more.Microsoft.UI.Xaml.Documents.Block) -> Void: ...
|
|
82
|
+
@winrt_mixinmethod
|
|
83
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], index: UInt32) -> Void: ...
|
|
84
|
+
@winrt_mixinmethod
|
|
85
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], value: win32more.Microsoft.UI.Xaml.Documents.Block) -> Void: ...
|
|
86
|
+
@winrt_mixinmethod
|
|
87
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block]) -> Void: ...
|
|
88
|
+
@winrt_mixinmethod
|
|
89
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block]) -> Void: ...
|
|
90
|
+
@winrt_mixinmethod
|
|
91
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Documents.Block]) -> UInt32: ...
|
|
92
|
+
@winrt_mixinmethod
|
|
93
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Block], items: PassArray[win32more.Microsoft.UI.Xaml.Documents.Block]) -> Void: ...
|
|
94
|
+
@winrt_mixinmethod
|
|
95
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Documents.Block]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Documents.Block]: ...
|
|
96
|
+
Size = property(get_Size, None)
|
|
97
|
+
class Bold(ComPtr):
|
|
98
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Span
|
|
99
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IBold
|
|
100
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Bold'
|
|
101
|
+
def __init__(self, *args, **kwargs):
|
|
102
|
+
if kwargs:
|
|
103
|
+
super().__init__(**kwargs)
|
|
104
|
+
elif len(args) == 0:
|
|
105
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Bold.CreateInstance(*args))
|
|
106
|
+
else:
|
|
107
|
+
raise ValueError('no matched constructor')
|
|
108
|
+
@winrt_activatemethod
|
|
109
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Bold: ...
|
|
110
|
+
class _Glyphs_Meta_(ComPtr.__class__):
|
|
111
|
+
pass
|
|
112
|
+
class Glyphs(ComPtr, metaclass=_Glyphs_Meta_):
|
|
113
|
+
extends: win32more.Microsoft.UI.Xaml.FrameworkElement
|
|
114
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IGlyphs
|
|
115
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Glyphs'
|
|
116
|
+
def __init__(self, *args, **kwargs):
|
|
117
|
+
if kwargs:
|
|
118
|
+
super().__init__(**kwargs)
|
|
119
|
+
elif len(args) == 0:
|
|
120
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Glyphs.CreateInstance(*args))
|
|
121
|
+
else:
|
|
122
|
+
raise ValueError('no matched constructor')
|
|
123
|
+
@winrt_activatemethod
|
|
124
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Glyphs: ...
|
|
125
|
+
@winrt_mixinmethod
|
|
126
|
+
def get_UnicodeString(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> WinRT_String: ...
|
|
127
|
+
@winrt_mixinmethod
|
|
128
|
+
def put_UnicodeString(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: WinRT_String) -> Void: ...
|
|
129
|
+
@winrt_mixinmethod
|
|
130
|
+
def get_Indices(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> WinRT_String: ...
|
|
131
|
+
@winrt_mixinmethod
|
|
132
|
+
def put_Indices(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: WinRT_String) -> Void: ...
|
|
133
|
+
@winrt_mixinmethod
|
|
134
|
+
def get_FontUri(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> win32more.Windows.Foundation.Uri: ...
|
|
135
|
+
@winrt_mixinmethod
|
|
136
|
+
def put_FontUri(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
137
|
+
@winrt_mixinmethod
|
|
138
|
+
def get_StyleSimulations(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> win32more.Microsoft.UI.Xaml.Media.StyleSimulations: ...
|
|
139
|
+
@winrt_mixinmethod
|
|
140
|
+
def put_StyleSimulations(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: win32more.Microsoft.UI.Xaml.Media.StyleSimulations) -> Void: ...
|
|
141
|
+
@winrt_mixinmethod
|
|
142
|
+
def get_FontRenderingEmSize(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> Double: ...
|
|
143
|
+
@winrt_mixinmethod
|
|
144
|
+
def put_FontRenderingEmSize(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: Double) -> Void: ...
|
|
145
|
+
@winrt_mixinmethod
|
|
146
|
+
def get_OriginX(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> Double: ...
|
|
147
|
+
@winrt_mixinmethod
|
|
148
|
+
def put_OriginX(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: Double) -> Void: ...
|
|
149
|
+
@winrt_mixinmethod
|
|
150
|
+
def get_OriginY(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> Double: ...
|
|
151
|
+
@winrt_mixinmethod
|
|
152
|
+
def put_OriginY(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: Double) -> Void: ...
|
|
153
|
+
@winrt_mixinmethod
|
|
154
|
+
def get_Fill(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
155
|
+
@winrt_mixinmethod
|
|
156
|
+
def put_Fill(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
157
|
+
@winrt_mixinmethod
|
|
158
|
+
def get_IsColorFontEnabled(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> Boolean: ...
|
|
159
|
+
@winrt_mixinmethod
|
|
160
|
+
def put_IsColorFontEnabled(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: Boolean) -> Void: ...
|
|
161
|
+
@winrt_mixinmethod
|
|
162
|
+
def get_ColorFontPaletteIndex(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs) -> Int32: ...
|
|
163
|
+
@winrt_mixinmethod
|
|
164
|
+
def put_ColorFontPaletteIndex(self: win32more.Microsoft.UI.Xaml.Documents.IGlyphs, value: Int32) -> Void: ...
|
|
165
|
+
@winrt_classmethod
|
|
166
|
+
def get_UnicodeStringProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
167
|
+
@winrt_classmethod
|
|
168
|
+
def get_IndicesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
169
|
+
@winrt_classmethod
|
|
170
|
+
def get_FontUriProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
171
|
+
@winrt_classmethod
|
|
172
|
+
def get_StyleSimulationsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
173
|
+
@winrt_classmethod
|
|
174
|
+
def get_FontRenderingEmSizeProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
175
|
+
@winrt_classmethod
|
|
176
|
+
def get_OriginXProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
177
|
+
@winrt_classmethod
|
|
178
|
+
def get_OriginYProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
179
|
+
@winrt_classmethod
|
|
180
|
+
def get_FillProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
181
|
+
@winrt_classmethod
|
|
182
|
+
def get_IsColorFontEnabledProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
183
|
+
@winrt_classmethod
|
|
184
|
+
def get_ColorFontPaletteIndexProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IGlyphsStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
185
|
+
ColorFontPaletteIndex = property(get_ColorFontPaletteIndex, put_ColorFontPaletteIndex)
|
|
186
|
+
Fill = property(get_Fill, put_Fill)
|
|
187
|
+
FontRenderingEmSize = property(get_FontRenderingEmSize, put_FontRenderingEmSize)
|
|
188
|
+
FontUri = property(get_FontUri, put_FontUri)
|
|
189
|
+
Indices = property(get_Indices, put_Indices)
|
|
190
|
+
IsColorFontEnabled = property(get_IsColorFontEnabled, put_IsColorFontEnabled)
|
|
191
|
+
OriginX = property(get_OriginX, put_OriginX)
|
|
192
|
+
OriginY = property(get_OriginY, put_OriginY)
|
|
193
|
+
StyleSimulations = property(get_StyleSimulations, put_StyleSimulations)
|
|
194
|
+
UnicodeString = property(get_UnicodeString, put_UnicodeString)
|
|
195
|
+
_Glyphs_Meta_.ColorFontPaletteIndexProperty = property(get_ColorFontPaletteIndexProperty, None)
|
|
196
|
+
_Glyphs_Meta_.FillProperty = property(get_FillProperty, None)
|
|
197
|
+
_Glyphs_Meta_.FontRenderingEmSizeProperty = property(get_FontRenderingEmSizeProperty, None)
|
|
198
|
+
_Glyphs_Meta_.FontUriProperty = property(get_FontUriProperty, None)
|
|
199
|
+
_Glyphs_Meta_.IndicesProperty = property(get_IndicesProperty, None)
|
|
200
|
+
_Glyphs_Meta_.IsColorFontEnabledProperty = property(get_IsColorFontEnabledProperty, None)
|
|
201
|
+
_Glyphs_Meta_.OriginXProperty = property(get_OriginXProperty, None)
|
|
202
|
+
_Glyphs_Meta_.OriginYProperty = property(get_OriginYProperty, None)
|
|
203
|
+
_Glyphs_Meta_.StyleSimulationsProperty = property(get_StyleSimulationsProperty, None)
|
|
204
|
+
_Glyphs_Meta_.UnicodeStringProperty = property(get_UnicodeStringProperty, None)
|
|
205
|
+
class _Hyperlink_Meta_(ComPtr.__class__):
|
|
206
|
+
pass
|
|
207
|
+
class Hyperlink(ComPtr, metaclass=_Hyperlink_Meta_):
|
|
208
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Span
|
|
209
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IHyperlink
|
|
210
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Hyperlink'
|
|
211
|
+
def __init__(self, *args, **kwargs):
|
|
212
|
+
if kwargs:
|
|
213
|
+
super().__init__(**kwargs)
|
|
214
|
+
elif len(args) == 0:
|
|
215
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Hyperlink.CreateInstance(*args))
|
|
216
|
+
else:
|
|
217
|
+
raise ValueError('no matched constructor')
|
|
218
|
+
@winrt_activatemethod
|
|
219
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Hyperlink: ...
|
|
220
|
+
@winrt_mixinmethod
|
|
221
|
+
def get_NavigateUri(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Windows.Foundation.Uri: ...
|
|
222
|
+
@winrt_mixinmethod
|
|
223
|
+
def put_NavigateUri(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
224
|
+
@winrt_mixinmethod
|
|
225
|
+
def get_UnderlineStyle(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.Documents.UnderlineStyle: ...
|
|
226
|
+
@winrt_mixinmethod
|
|
227
|
+
def put_UnderlineStyle(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.Documents.UnderlineStyle) -> Void: ...
|
|
228
|
+
@winrt_mixinmethod
|
|
229
|
+
def get_XYFocusLeft(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
230
|
+
@winrt_mixinmethod
|
|
231
|
+
def put_XYFocusLeft(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
232
|
+
@winrt_mixinmethod
|
|
233
|
+
def get_XYFocusRight(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
234
|
+
@winrt_mixinmethod
|
|
235
|
+
def put_XYFocusRight(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
236
|
+
@winrt_mixinmethod
|
|
237
|
+
def get_XYFocusUp(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
238
|
+
@winrt_mixinmethod
|
|
239
|
+
def put_XYFocusUp(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
240
|
+
@winrt_mixinmethod
|
|
241
|
+
def get_XYFocusDown(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
242
|
+
@winrt_mixinmethod
|
|
243
|
+
def put_XYFocusDown(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
244
|
+
@winrt_mixinmethod
|
|
245
|
+
def get_ElementSoundMode(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.ElementSoundMode: ...
|
|
246
|
+
@winrt_mixinmethod
|
|
247
|
+
def put_ElementSoundMode(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.ElementSoundMode) -> Void: ...
|
|
248
|
+
@winrt_mixinmethod
|
|
249
|
+
def get_FocusState(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.FocusState: ...
|
|
250
|
+
@winrt_mixinmethod
|
|
251
|
+
def get_XYFocusUpNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
252
|
+
@winrt_mixinmethod
|
|
253
|
+
def put_XYFocusUpNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
254
|
+
@winrt_mixinmethod
|
|
255
|
+
def get_XYFocusDownNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
256
|
+
@winrt_mixinmethod
|
|
257
|
+
def put_XYFocusDownNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
258
|
+
@winrt_mixinmethod
|
|
259
|
+
def get_XYFocusLeftNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
260
|
+
@winrt_mixinmethod
|
|
261
|
+
def put_XYFocusLeftNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
262
|
+
@winrt_mixinmethod
|
|
263
|
+
def get_XYFocusRightNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
264
|
+
@winrt_mixinmethod
|
|
265
|
+
def put_XYFocusRightNavigationStrategy(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
266
|
+
@winrt_mixinmethod
|
|
267
|
+
def get_IsTabStop(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> Boolean: ...
|
|
268
|
+
@winrt_mixinmethod
|
|
269
|
+
def put_IsTabStop(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: Boolean) -> Void: ...
|
|
270
|
+
@winrt_mixinmethod
|
|
271
|
+
def get_TabIndex(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink) -> Int32: ...
|
|
272
|
+
@winrt_mixinmethod
|
|
273
|
+
def put_TabIndex(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: Int32) -> Void: ...
|
|
274
|
+
@winrt_mixinmethod
|
|
275
|
+
def add_Click(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.Hyperlink, win32more.Microsoft.UI.Xaml.Documents.HyperlinkClickEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
276
|
+
@winrt_mixinmethod
|
|
277
|
+
def remove_Click(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
278
|
+
@winrt_mixinmethod
|
|
279
|
+
def add_GotFocus(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
280
|
+
@winrt_mixinmethod
|
|
281
|
+
def remove_GotFocus(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
282
|
+
@winrt_mixinmethod
|
|
283
|
+
def add_LostFocus(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
284
|
+
@winrt_mixinmethod
|
|
285
|
+
def remove_LostFocus(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
286
|
+
@winrt_mixinmethod
|
|
287
|
+
def Focus(self: win32more.Microsoft.UI.Xaml.Documents.IHyperlink, value: win32more.Microsoft.UI.Xaml.FocusState) -> Boolean: ...
|
|
288
|
+
@winrt_classmethod
|
|
289
|
+
def get_NavigateUriProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
290
|
+
@winrt_classmethod
|
|
291
|
+
def get_UnderlineStyleProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
292
|
+
@winrt_classmethod
|
|
293
|
+
def get_XYFocusLeftProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
294
|
+
@winrt_classmethod
|
|
295
|
+
def get_XYFocusRightProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
296
|
+
@winrt_classmethod
|
|
297
|
+
def get_XYFocusUpProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
298
|
+
@winrt_classmethod
|
|
299
|
+
def get_XYFocusDownProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
300
|
+
@winrt_classmethod
|
|
301
|
+
def get_ElementSoundModeProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
302
|
+
@winrt_classmethod
|
|
303
|
+
def get_FocusStateProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
304
|
+
@winrt_classmethod
|
|
305
|
+
def get_XYFocusUpNavigationStrategyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
306
|
+
@winrt_classmethod
|
|
307
|
+
def get_XYFocusDownNavigationStrategyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
308
|
+
@winrt_classmethod
|
|
309
|
+
def get_XYFocusLeftNavigationStrategyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
310
|
+
@winrt_classmethod
|
|
311
|
+
def get_XYFocusRightNavigationStrategyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
312
|
+
@winrt_classmethod
|
|
313
|
+
def get_IsTabStopProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
314
|
+
@winrt_classmethod
|
|
315
|
+
def get_TabIndexProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
316
|
+
ElementSoundMode = property(get_ElementSoundMode, put_ElementSoundMode)
|
|
317
|
+
FocusState = property(get_FocusState, None)
|
|
318
|
+
IsTabStop = property(get_IsTabStop, put_IsTabStop)
|
|
319
|
+
NavigateUri = property(get_NavigateUri, put_NavigateUri)
|
|
320
|
+
TabIndex = property(get_TabIndex, put_TabIndex)
|
|
321
|
+
UnderlineStyle = property(get_UnderlineStyle, put_UnderlineStyle)
|
|
322
|
+
XYFocusDown = property(get_XYFocusDown, put_XYFocusDown)
|
|
323
|
+
XYFocusDownNavigationStrategy = property(get_XYFocusDownNavigationStrategy, put_XYFocusDownNavigationStrategy)
|
|
324
|
+
XYFocusLeft = property(get_XYFocusLeft, put_XYFocusLeft)
|
|
325
|
+
XYFocusLeftNavigationStrategy = property(get_XYFocusLeftNavigationStrategy, put_XYFocusLeftNavigationStrategy)
|
|
326
|
+
XYFocusRight = property(get_XYFocusRight, put_XYFocusRight)
|
|
327
|
+
XYFocusRightNavigationStrategy = property(get_XYFocusRightNavigationStrategy, put_XYFocusRightNavigationStrategy)
|
|
328
|
+
XYFocusUp = property(get_XYFocusUp, put_XYFocusUp)
|
|
329
|
+
XYFocusUpNavigationStrategy = property(get_XYFocusUpNavigationStrategy, put_XYFocusUpNavigationStrategy)
|
|
330
|
+
_Hyperlink_Meta_.ElementSoundModeProperty = property(get_ElementSoundModeProperty, None)
|
|
331
|
+
_Hyperlink_Meta_.FocusStateProperty = property(get_FocusStateProperty, None)
|
|
332
|
+
_Hyperlink_Meta_.IsTabStopProperty = property(get_IsTabStopProperty, None)
|
|
333
|
+
_Hyperlink_Meta_.NavigateUriProperty = property(get_NavigateUriProperty, None)
|
|
334
|
+
_Hyperlink_Meta_.TabIndexProperty = property(get_TabIndexProperty, None)
|
|
335
|
+
_Hyperlink_Meta_.UnderlineStyleProperty = property(get_UnderlineStyleProperty, None)
|
|
336
|
+
_Hyperlink_Meta_.XYFocusDownNavigationStrategyProperty = property(get_XYFocusDownNavigationStrategyProperty, None)
|
|
337
|
+
_Hyperlink_Meta_.XYFocusDownProperty = property(get_XYFocusDownProperty, None)
|
|
338
|
+
_Hyperlink_Meta_.XYFocusLeftNavigationStrategyProperty = property(get_XYFocusLeftNavigationStrategyProperty, None)
|
|
339
|
+
_Hyperlink_Meta_.XYFocusLeftProperty = property(get_XYFocusLeftProperty, None)
|
|
340
|
+
_Hyperlink_Meta_.XYFocusRightNavigationStrategyProperty = property(get_XYFocusRightNavigationStrategyProperty, None)
|
|
341
|
+
_Hyperlink_Meta_.XYFocusRightProperty = property(get_XYFocusRightProperty, None)
|
|
342
|
+
_Hyperlink_Meta_.XYFocusUpNavigationStrategyProperty = property(get_XYFocusUpNavigationStrategyProperty, None)
|
|
343
|
+
_Hyperlink_Meta_.XYFocusUpProperty = property(get_XYFocusUpProperty, None)
|
|
344
|
+
Click = event()
|
|
345
|
+
GotFocus = event()
|
|
346
|
+
LostFocus = event()
|
|
347
|
+
class HyperlinkClickEventArgs(ComPtr):
|
|
348
|
+
extends: win32more.Microsoft.UI.Xaml.RoutedEventArgs
|
|
349
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IHyperlinkClickEventArgs
|
|
350
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.HyperlinkClickEventArgs'
|
|
351
|
+
class IBlock(ComPtr):
|
|
352
|
+
extends: IInspectable
|
|
353
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IBlock'
|
|
354
|
+
_iid_ = Guid('{8149d507-672f-5fd5-a10a-351389ba9659}')
|
|
355
|
+
@winrt_commethod(6)
|
|
356
|
+
def get_TextAlignment(self) -> win32more.Microsoft.UI.Xaml.TextAlignment: ...
|
|
357
|
+
@winrt_commethod(7)
|
|
358
|
+
def put_TextAlignment(self, value: win32more.Microsoft.UI.Xaml.TextAlignment) -> Void: ...
|
|
359
|
+
@winrt_commethod(8)
|
|
360
|
+
def get_HorizontalTextAlignment(self) -> win32more.Microsoft.UI.Xaml.TextAlignment: ...
|
|
361
|
+
@winrt_commethod(9)
|
|
362
|
+
def put_HorizontalTextAlignment(self, value: win32more.Microsoft.UI.Xaml.TextAlignment) -> Void: ...
|
|
363
|
+
@winrt_commethod(10)
|
|
364
|
+
def get_LineHeight(self) -> Double: ...
|
|
365
|
+
@winrt_commethod(11)
|
|
366
|
+
def put_LineHeight(self, value: Double) -> Void: ...
|
|
367
|
+
@winrt_commethod(12)
|
|
368
|
+
def get_LineStackingStrategy(self) -> win32more.Microsoft.UI.Xaml.LineStackingStrategy: ...
|
|
369
|
+
@winrt_commethod(13)
|
|
370
|
+
def put_LineStackingStrategy(self, value: win32more.Microsoft.UI.Xaml.LineStackingStrategy) -> Void: ...
|
|
371
|
+
@winrt_commethod(14)
|
|
372
|
+
def get_Margin(self) -> win32more.Microsoft.UI.Xaml.Thickness: ...
|
|
373
|
+
@winrt_commethod(15)
|
|
374
|
+
def put_Margin(self, value: win32more.Microsoft.UI.Xaml.Thickness) -> Void: ...
|
|
375
|
+
HorizontalTextAlignment = property(get_HorizontalTextAlignment, put_HorizontalTextAlignment)
|
|
376
|
+
LineHeight = property(get_LineHeight, put_LineHeight)
|
|
377
|
+
LineStackingStrategy = property(get_LineStackingStrategy, put_LineStackingStrategy)
|
|
378
|
+
Margin = property(get_Margin, put_Margin)
|
|
379
|
+
TextAlignment = property(get_TextAlignment, put_TextAlignment)
|
|
380
|
+
class IBlockFactory(ComPtr):
|
|
381
|
+
extends: IInspectable
|
|
382
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IBlockFactory'
|
|
383
|
+
_iid_ = Guid('{21bd671c-33e2-56ef-be37-a128e898452c}')
|
|
384
|
+
@winrt_commethod(6)
|
|
385
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Block: ...
|
|
386
|
+
class IBlockStatics(ComPtr):
|
|
387
|
+
extends: IInspectable
|
|
388
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IBlockStatics'
|
|
389
|
+
_iid_ = Guid('{830feedf-9aa6-56cd-983e-055500171b45}')
|
|
390
|
+
@winrt_commethod(6)
|
|
391
|
+
def get_TextAlignmentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
392
|
+
@winrt_commethod(7)
|
|
393
|
+
def get_HorizontalTextAlignmentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
394
|
+
@winrt_commethod(8)
|
|
395
|
+
def get_LineHeightProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
396
|
+
@winrt_commethod(9)
|
|
397
|
+
def get_LineStackingStrategyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
398
|
+
@winrt_commethod(10)
|
|
399
|
+
def get_MarginProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
400
|
+
HorizontalTextAlignmentProperty = property(get_HorizontalTextAlignmentProperty, None)
|
|
401
|
+
LineHeightProperty = property(get_LineHeightProperty, None)
|
|
402
|
+
LineStackingStrategyProperty = property(get_LineStackingStrategyProperty, None)
|
|
403
|
+
MarginProperty = property(get_MarginProperty, None)
|
|
404
|
+
TextAlignmentProperty = property(get_TextAlignmentProperty, None)
|
|
405
|
+
class IBold(ComPtr):
|
|
406
|
+
extends: IInspectable
|
|
407
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IBold'
|
|
408
|
+
_iid_ = Guid('{241a5f5a-c164-597f-b0db-fac7431297f2}')
|
|
409
|
+
class IGlyphs(ComPtr):
|
|
410
|
+
extends: IInspectable
|
|
411
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IGlyphs'
|
|
412
|
+
_iid_ = Guid('{0fbf8cfe-18e7-5e45-9fa3-d2d0927958f4}')
|
|
413
|
+
@winrt_commethod(6)
|
|
414
|
+
def get_UnicodeString(self) -> WinRT_String: ...
|
|
415
|
+
@winrt_commethod(7)
|
|
416
|
+
def put_UnicodeString(self, value: WinRT_String) -> Void: ...
|
|
417
|
+
@winrt_commethod(8)
|
|
418
|
+
def get_Indices(self) -> WinRT_String: ...
|
|
419
|
+
@winrt_commethod(9)
|
|
420
|
+
def put_Indices(self, value: WinRT_String) -> Void: ...
|
|
421
|
+
@winrt_commethod(10)
|
|
422
|
+
def get_FontUri(self) -> win32more.Windows.Foundation.Uri: ...
|
|
423
|
+
@winrt_commethod(11)
|
|
424
|
+
def put_FontUri(self, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
425
|
+
@winrt_commethod(12)
|
|
426
|
+
def get_StyleSimulations(self) -> win32more.Microsoft.UI.Xaml.Media.StyleSimulations: ...
|
|
427
|
+
@winrt_commethod(13)
|
|
428
|
+
def put_StyleSimulations(self, value: win32more.Microsoft.UI.Xaml.Media.StyleSimulations) -> Void: ...
|
|
429
|
+
@winrt_commethod(14)
|
|
430
|
+
def get_FontRenderingEmSize(self) -> Double: ...
|
|
431
|
+
@winrt_commethod(15)
|
|
432
|
+
def put_FontRenderingEmSize(self, value: Double) -> Void: ...
|
|
433
|
+
@winrt_commethod(16)
|
|
434
|
+
def get_OriginX(self) -> Double: ...
|
|
435
|
+
@winrt_commethod(17)
|
|
436
|
+
def put_OriginX(self, value: Double) -> Void: ...
|
|
437
|
+
@winrt_commethod(18)
|
|
438
|
+
def get_OriginY(self) -> Double: ...
|
|
439
|
+
@winrt_commethod(19)
|
|
440
|
+
def put_OriginY(self, value: Double) -> Void: ...
|
|
441
|
+
@winrt_commethod(20)
|
|
442
|
+
def get_Fill(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
443
|
+
@winrt_commethod(21)
|
|
444
|
+
def put_Fill(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
445
|
+
@winrt_commethod(22)
|
|
446
|
+
def get_IsColorFontEnabled(self) -> Boolean: ...
|
|
447
|
+
@winrt_commethod(23)
|
|
448
|
+
def put_IsColorFontEnabled(self, value: Boolean) -> Void: ...
|
|
449
|
+
@winrt_commethod(24)
|
|
450
|
+
def get_ColorFontPaletteIndex(self) -> Int32: ...
|
|
451
|
+
@winrt_commethod(25)
|
|
452
|
+
def put_ColorFontPaletteIndex(self, value: Int32) -> Void: ...
|
|
453
|
+
ColorFontPaletteIndex = property(get_ColorFontPaletteIndex, put_ColorFontPaletteIndex)
|
|
454
|
+
Fill = property(get_Fill, put_Fill)
|
|
455
|
+
FontRenderingEmSize = property(get_FontRenderingEmSize, put_FontRenderingEmSize)
|
|
456
|
+
FontUri = property(get_FontUri, put_FontUri)
|
|
457
|
+
Indices = property(get_Indices, put_Indices)
|
|
458
|
+
IsColorFontEnabled = property(get_IsColorFontEnabled, put_IsColorFontEnabled)
|
|
459
|
+
OriginX = property(get_OriginX, put_OriginX)
|
|
460
|
+
OriginY = property(get_OriginY, put_OriginY)
|
|
461
|
+
StyleSimulations = property(get_StyleSimulations, put_StyleSimulations)
|
|
462
|
+
UnicodeString = property(get_UnicodeString, put_UnicodeString)
|
|
463
|
+
class IGlyphsStatics(ComPtr):
|
|
464
|
+
extends: IInspectable
|
|
465
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IGlyphsStatics'
|
|
466
|
+
_iid_ = Guid('{8d9e241a-3e0e-5100-8ede-e008034ff8ae}')
|
|
467
|
+
@winrt_commethod(6)
|
|
468
|
+
def get_UnicodeStringProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
469
|
+
@winrt_commethod(7)
|
|
470
|
+
def get_IndicesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
471
|
+
@winrt_commethod(8)
|
|
472
|
+
def get_FontUriProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
473
|
+
@winrt_commethod(9)
|
|
474
|
+
def get_StyleSimulationsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
475
|
+
@winrt_commethod(10)
|
|
476
|
+
def get_FontRenderingEmSizeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
477
|
+
@winrt_commethod(11)
|
|
478
|
+
def get_OriginXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
479
|
+
@winrt_commethod(12)
|
|
480
|
+
def get_OriginYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
481
|
+
@winrt_commethod(13)
|
|
482
|
+
def get_FillProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
483
|
+
@winrt_commethod(14)
|
|
484
|
+
def get_IsColorFontEnabledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
485
|
+
@winrt_commethod(15)
|
|
486
|
+
def get_ColorFontPaletteIndexProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
487
|
+
ColorFontPaletteIndexProperty = property(get_ColorFontPaletteIndexProperty, None)
|
|
488
|
+
FillProperty = property(get_FillProperty, None)
|
|
489
|
+
FontRenderingEmSizeProperty = property(get_FontRenderingEmSizeProperty, None)
|
|
490
|
+
FontUriProperty = property(get_FontUriProperty, None)
|
|
491
|
+
IndicesProperty = property(get_IndicesProperty, None)
|
|
492
|
+
IsColorFontEnabledProperty = property(get_IsColorFontEnabledProperty, None)
|
|
493
|
+
OriginXProperty = property(get_OriginXProperty, None)
|
|
494
|
+
OriginYProperty = property(get_OriginYProperty, None)
|
|
495
|
+
StyleSimulationsProperty = property(get_StyleSimulationsProperty, None)
|
|
496
|
+
UnicodeStringProperty = property(get_UnicodeStringProperty, None)
|
|
497
|
+
class IHyperlink(ComPtr):
|
|
498
|
+
extends: IInspectable
|
|
499
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IHyperlink'
|
|
500
|
+
_iid_ = Guid('{ac09bd16-cdfa-54c2-8d03-a474181545b1}')
|
|
501
|
+
@winrt_commethod(6)
|
|
502
|
+
def get_NavigateUri(self) -> win32more.Windows.Foundation.Uri: ...
|
|
503
|
+
@winrt_commethod(7)
|
|
504
|
+
def put_NavigateUri(self, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
505
|
+
@winrt_commethod(8)
|
|
506
|
+
def get_UnderlineStyle(self) -> win32more.Microsoft.UI.Xaml.Documents.UnderlineStyle: ...
|
|
507
|
+
@winrt_commethod(9)
|
|
508
|
+
def put_UnderlineStyle(self, value: win32more.Microsoft.UI.Xaml.Documents.UnderlineStyle) -> Void: ...
|
|
509
|
+
@winrt_commethod(10)
|
|
510
|
+
def get_XYFocusLeft(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
511
|
+
@winrt_commethod(11)
|
|
512
|
+
def put_XYFocusLeft(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
513
|
+
@winrt_commethod(12)
|
|
514
|
+
def get_XYFocusRight(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
515
|
+
@winrt_commethod(13)
|
|
516
|
+
def put_XYFocusRight(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
517
|
+
@winrt_commethod(14)
|
|
518
|
+
def get_XYFocusUp(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
519
|
+
@winrt_commethod(15)
|
|
520
|
+
def put_XYFocusUp(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
521
|
+
@winrt_commethod(16)
|
|
522
|
+
def get_XYFocusDown(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
523
|
+
@winrt_commethod(17)
|
|
524
|
+
def put_XYFocusDown(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
525
|
+
@winrt_commethod(18)
|
|
526
|
+
def get_ElementSoundMode(self) -> win32more.Microsoft.UI.Xaml.ElementSoundMode: ...
|
|
527
|
+
@winrt_commethod(19)
|
|
528
|
+
def put_ElementSoundMode(self, value: win32more.Microsoft.UI.Xaml.ElementSoundMode) -> Void: ...
|
|
529
|
+
@winrt_commethod(20)
|
|
530
|
+
def get_FocusState(self) -> win32more.Microsoft.UI.Xaml.FocusState: ...
|
|
531
|
+
@winrt_commethod(21)
|
|
532
|
+
def get_XYFocusUpNavigationStrategy(self) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
533
|
+
@winrt_commethod(22)
|
|
534
|
+
def put_XYFocusUpNavigationStrategy(self, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
535
|
+
@winrt_commethod(23)
|
|
536
|
+
def get_XYFocusDownNavigationStrategy(self) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
537
|
+
@winrt_commethod(24)
|
|
538
|
+
def put_XYFocusDownNavigationStrategy(self, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
539
|
+
@winrt_commethod(25)
|
|
540
|
+
def get_XYFocusLeftNavigationStrategy(self) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
541
|
+
@winrt_commethod(26)
|
|
542
|
+
def put_XYFocusLeftNavigationStrategy(self, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
543
|
+
@winrt_commethod(27)
|
|
544
|
+
def get_XYFocusRightNavigationStrategy(self) -> win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy: ...
|
|
545
|
+
@winrt_commethod(28)
|
|
546
|
+
def put_XYFocusRightNavigationStrategy(self, value: win32more.Microsoft.UI.Xaml.Input.XYFocusNavigationStrategy) -> Void: ...
|
|
547
|
+
@winrt_commethod(29)
|
|
548
|
+
def get_IsTabStop(self) -> Boolean: ...
|
|
549
|
+
@winrt_commethod(30)
|
|
550
|
+
def put_IsTabStop(self, value: Boolean) -> Void: ...
|
|
551
|
+
@winrt_commethod(31)
|
|
552
|
+
def get_TabIndex(self) -> Int32: ...
|
|
553
|
+
@winrt_commethod(32)
|
|
554
|
+
def put_TabIndex(self, value: Int32) -> Void: ...
|
|
555
|
+
@winrt_commethod(33)
|
|
556
|
+
def add_Click(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.Hyperlink, win32more.Microsoft.UI.Xaml.Documents.HyperlinkClickEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
557
|
+
@winrt_commethod(34)
|
|
558
|
+
def remove_Click(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
559
|
+
@winrt_commethod(35)
|
|
560
|
+
def add_GotFocus(self, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
561
|
+
@winrt_commethod(36)
|
|
562
|
+
def remove_GotFocus(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
563
|
+
@winrt_commethod(37)
|
|
564
|
+
def add_LostFocus(self, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
565
|
+
@winrt_commethod(38)
|
|
566
|
+
def remove_LostFocus(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
567
|
+
@winrt_commethod(39)
|
|
568
|
+
def Focus(self, value: win32more.Microsoft.UI.Xaml.FocusState) -> Boolean: ...
|
|
569
|
+
ElementSoundMode = property(get_ElementSoundMode, put_ElementSoundMode)
|
|
570
|
+
FocusState = property(get_FocusState, None)
|
|
571
|
+
IsTabStop = property(get_IsTabStop, put_IsTabStop)
|
|
572
|
+
NavigateUri = property(get_NavigateUri, put_NavigateUri)
|
|
573
|
+
TabIndex = property(get_TabIndex, put_TabIndex)
|
|
574
|
+
UnderlineStyle = property(get_UnderlineStyle, put_UnderlineStyle)
|
|
575
|
+
XYFocusDown = property(get_XYFocusDown, put_XYFocusDown)
|
|
576
|
+
XYFocusDownNavigationStrategy = property(get_XYFocusDownNavigationStrategy, put_XYFocusDownNavigationStrategy)
|
|
577
|
+
XYFocusLeft = property(get_XYFocusLeft, put_XYFocusLeft)
|
|
578
|
+
XYFocusLeftNavigationStrategy = property(get_XYFocusLeftNavigationStrategy, put_XYFocusLeftNavigationStrategy)
|
|
579
|
+
XYFocusRight = property(get_XYFocusRight, put_XYFocusRight)
|
|
580
|
+
XYFocusRightNavigationStrategy = property(get_XYFocusRightNavigationStrategy, put_XYFocusRightNavigationStrategy)
|
|
581
|
+
XYFocusUp = property(get_XYFocusUp, put_XYFocusUp)
|
|
582
|
+
XYFocusUpNavigationStrategy = property(get_XYFocusUpNavigationStrategy, put_XYFocusUpNavigationStrategy)
|
|
583
|
+
Click = event()
|
|
584
|
+
GotFocus = event()
|
|
585
|
+
LostFocus = event()
|
|
586
|
+
class IHyperlinkClickEventArgs(ComPtr):
|
|
587
|
+
extends: IInspectable
|
|
588
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IHyperlinkClickEventArgs'
|
|
589
|
+
_iid_ = Guid('{f8f89552-873d-5ef5-82bf-c79a9509b07c}')
|
|
590
|
+
class IHyperlinkStatics(ComPtr):
|
|
591
|
+
extends: IInspectable
|
|
592
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IHyperlinkStatics'
|
|
593
|
+
_iid_ = Guid('{e13598f4-7bc7-5ab9-885b-70f32f8c9531}')
|
|
594
|
+
@winrt_commethod(6)
|
|
595
|
+
def get_NavigateUriProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
596
|
+
@winrt_commethod(7)
|
|
597
|
+
def get_UnderlineStyleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
598
|
+
@winrt_commethod(8)
|
|
599
|
+
def get_XYFocusLeftProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
600
|
+
@winrt_commethod(9)
|
|
601
|
+
def get_XYFocusRightProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
602
|
+
@winrt_commethod(10)
|
|
603
|
+
def get_XYFocusUpProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
604
|
+
@winrt_commethod(11)
|
|
605
|
+
def get_XYFocusDownProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
606
|
+
@winrt_commethod(12)
|
|
607
|
+
def get_ElementSoundModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
608
|
+
@winrt_commethod(13)
|
|
609
|
+
def get_FocusStateProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
610
|
+
@winrt_commethod(14)
|
|
611
|
+
def get_XYFocusUpNavigationStrategyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
612
|
+
@winrt_commethod(15)
|
|
613
|
+
def get_XYFocusDownNavigationStrategyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
614
|
+
@winrt_commethod(16)
|
|
615
|
+
def get_XYFocusLeftNavigationStrategyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
616
|
+
@winrt_commethod(17)
|
|
617
|
+
def get_XYFocusRightNavigationStrategyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
618
|
+
@winrt_commethod(18)
|
|
619
|
+
def get_IsTabStopProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
620
|
+
@winrt_commethod(19)
|
|
621
|
+
def get_TabIndexProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
622
|
+
ElementSoundModeProperty = property(get_ElementSoundModeProperty, None)
|
|
623
|
+
FocusStateProperty = property(get_FocusStateProperty, None)
|
|
624
|
+
IsTabStopProperty = property(get_IsTabStopProperty, None)
|
|
625
|
+
NavigateUriProperty = property(get_NavigateUriProperty, None)
|
|
626
|
+
TabIndexProperty = property(get_TabIndexProperty, None)
|
|
627
|
+
UnderlineStyleProperty = property(get_UnderlineStyleProperty, None)
|
|
628
|
+
XYFocusDownNavigationStrategyProperty = property(get_XYFocusDownNavigationStrategyProperty, None)
|
|
629
|
+
XYFocusDownProperty = property(get_XYFocusDownProperty, None)
|
|
630
|
+
XYFocusLeftNavigationStrategyProperty = property(get_XYFocusLeftNavigationStrategyProperty, None)
|
|
631
|
+
XYFocusLeftProperty = property(get_XYFocusLeftProperty, None)
|
|
632
|
+
XYFocusRightNavigationStrategyProperty = property(get_XYFocusRightNavigationStrategyProperty, None)
|
|
633
|
+
XYFocusRightProperty = property(get_XYFocusRightProperty, None)
|
|
634
|
+
XYFocusUpNavigationStrategyProperty = property(get_XYFocusUpNavigationStrategyProperty, None)
|
|
635
|
+
XYFocusUpProperty = property(get_XYFocusUpProperty, None)
|
|
636
|
+
class IInline(ComPtr):
|
|
637
|
+
extends: IInspectable
|
|
638
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IInline'
|
|
639
|
+
_iid_ = Guid('{813d427a-8980-5a79-a8fa-f27919cfb24f}')
|
|
640
|
+
class IInlineFactory(ComPtr):
|
|
641
|
+
extends: IInspectable
|
|
642
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IInlineFactory'
|
|
643
|
+
_iid_ = Guid('{fd253a36-fa2b-5b30-89a8-9f577871ec07}')
|
|
644
|
+
@winrt_commethod(6)
|
|
645
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Inline: ...
|
|
646
|
+
class IInlineUIContainer(ComPtr):
|
|
647
|
+
extends: IInspectable
|
|
648
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IInlineUIContainer'
|
|
649
|
+
_iid_ = Guid('{d529bef6-c05a-5bad-85e8-640127cf86f5}')
|
|
650
|
+
@winrt_commethod(6)
|
|
651
|
+
def get_Child(self) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
652
|
+
@winrt_commethod(7)
|
|
653
|
+
def put_Child(self, value: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
654
|
+
Child = property(get_Child, put_Child)
|
|
655
|
+
class IItalic(ComPtr):
|
|
656
|
+
extends: IInspectable
|
|
657
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IItalic'
|
|
658
|
+
_iid_ = Guid('{ca3cbebd-7a8d-5d7a-8fdf-538e8a680f6c}')
|
|
659
|
+
class ILineBreak(ComPtr):
|
|
660
|
+
extends: IInspectable
|
|
661
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ILineBreak'
|
|
662
|
+
_iid_ = Guid('{09307599-7cc2-5f54-b106-728620c16f76}')
|
|
663
|
+
class IParagraph(ComPtr):
|
|
664
|
+
extends: IInspectable
|
|
665
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IParagraph'
|
|
666
|
+
_iid_ = Guid('{9ed64c77-329d-502f-a257-f58398edab51}')
|
|
667
|
+
@winrt_commethod(6)
|
|
668
|
+
def get_Inlines(self) -> win32more.Microsoft.UI.Xaml.Documents.InlineCollection: ...
|
|
669
|
+
@winrt_commethod(7)
|
|
670
|
+
def get_TextIndent(self) -> Double: ...
|
|
671
|
+
@winrt_commethod(8)
|
|
672
|
+
def put_TextIndent(self, value: Double) -> Void: ...
|
|
673
|
+
Inlines = property(get_Inlines, None)
|
|
674
|
+
TextIndent = property(get_TextIndent, put_TextIndent)
|
|
675
|
+
class IParagraphStatics(ComPtr):
|
|
676
|
+
extends: IInspectable
|
|
677
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IParagraphStatics'
|
|
678
|
+
_iid_ = Guid('{4eb89ab1-66c8-5fc0-aa5f-48c8092ceb5f}')
|
|
679
|
+
@winrt_commethod(6)
|
|
680
|
+
def get_TextIndentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
681
|
+
TextIndentProperty = property(get_TextIndentProperty, None)
|
|
682
|
+
class IRun(ComPtr):
|
|
683
|
+
extends: IInspectable
|
|
684
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IRun'
|
|
685
|
+
_iid_ = Guid('{1f905239-37cb-590b-9132-3ffb7741906e}')
|
|
686
|
+
@winrt_commethod(6)
|
|
687
|
+
def get_Text(self) -> WinRT_String: ...
|
|
688
|
+
@winrt_commethod(7)
|
|
689
|
+
def put_Text(self, value: WinRT_String) -> Void: ...
|
|
690
|
+
@winrt_commethod(8)
|
|
691
|
+
def get_FlowDirection(self) -> win32more.Microsoft.UI.Xaml.FlowDirection: ...
|
|
692
|
+
@winrt_commethod(9)
|
|
693
|
+
def put_FlowDirection(self, value: win32more.Microsoft.UI.Xaml.FlowDirection) -> Void: ...
|
|
694
|
+
FlowDirection = property(get_FlowDirection, put_FlowDirection)
|
|
695
|
+
Text = property(get_Text, put_Text)
|
|
696
|
+
class IRunStatics(ComPtr):
|
|
697
|
+
extends: IInspectable
|
|
698
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IRunStatics'
|
|
699
|
+
_iid_ = Guid('{051b3c5b-7600-51a5-80c5-93eb50fd684f}')
|
|
700
|
+
@winrt_commethod(6)
|
|
701
|
+
def get_FlowDirectionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
702
|
+
FlowDirectionProperty = property(get_FlowDirectionProperty, None)
|
|
703
|
+
class ISpan(ComPtr):
|
|
704
|
+
extends: IInspectable
|
|
705
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ISpan'
|
|
706
|
+
_iid_ = Guid('{91b93d4d-4e28-57b9-bffb-3566c2a3c2a1}')
|
|
707
|
+
@winrt_commethod(6)
|
|
708
|
+
def get_Inlines(self) -> win32more.Microsoft.UI.Xaml.Documents.InlineCollection: ...
|
|
709
|
+
@winrt_commethod(7)
|
|
710
|
+
def put_Inlines(self, value: win32more.Microsoft.UI.Xaml.Documents.InlineCollection) -> Void: ...
|
|
711
|
+
Inlines = property(get_Inlines, put_Inlines)
|
|
712
|
+
class ISpanFactory(ComPtr):
|
|
713
|
+
extends: IInspectable
|
|
714
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ISpanFactory'
|
|
715
|
+
_iid_ = Guid('{a6e87c16-c175-55c8-bbd3-ce40f9d0a680}')
|
|
716
|
+
@winrt_commethod(6)
|
|
717
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Span: ...
|
|
718
|
+
class ITextElement(ComPtr):
|
|
719
|
+
extends: IInspectable
|
|
720
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextElement'
|
|
721
|
+
_iid_ = Guid('{a122ba22-833f-5220-a47e-6cd507531abe}')
|
|
722
|
+
@winrt_commethod(6)
|
|
723
|
+
def get_Name(self) -> WinRT_String: ...
|
|
724
|
+
@winrt_commethod(7)
|
|
725
|
+
def get_FontSize(self) -> Double: ...
|
|
726
|
+
@winrt_commethod(8)
|
|
727
|
+
def put_FontSize(self, value: Double) -> Void: ...
|
|
728
|
+
@winrt_commethod(9)
|
|
729
|
+
def get_FontFamily(self) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
730
|
+
@winrt_commethod(10)
|
|
731
|
+
def put_FontFamily(self, value: win32more.Microsoft.UI.Xaml.Media.FontFamily) -> Void: ...
|
|
732
|
+
@winrt_commethod(11)
|
|
733
|
+
def get_FontWeight(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
734
|
+
@winrt_commethod(12)
|
|
735
|
+
def put_FontWeight(self, value: win32more.Windows.UI.Text.FontWeight) -> Void: ...
|
|
736
|
+
@winrt_commethod(13)
|
|
737
|
+
def get_FontStyle(self) -> win32more.Windows.UI.Text.FontStyle: ...
|
|
738
|
+
@winrt_commethod(14)
|
|
739
|
+
def put_FontStyle(self, value: win32more.Windows.UI.Text.FontStyle) -> Void: ...
|
|
740
|
+
@winrt_commethod(15)
|
|
741
|
+
def get_FontStretch(self) -> win32more.Windows.UI.Text.FontStretch: ...
|
|
742
|
+
@winrt_commethod(16)
|
|
743
|
+
def put_FontStretch(self, value: win32more.Windows.UI.Text.FontStretch) -> Void: ...
|
|
744
|
+
@winrt_commethod(17)
|
|
745
|
+
def get_CharacterSpacing(self) -> Int32: ...
|
|
746
|
+
@winrt_commethod(18)
|
|
747
|
+
def put_CharacterSpacing(self, value: Int32) -> Void: ...
|
|
748
|
+
@winrt_commethod(19)
|
|
749
|
+
def get_Foreground(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
750
|
+
@winrt_commethod(20)
|
|
751
|
+
def put_Foreground(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
752
|
+
@winrt_commethod(21)
|
|
753
|
+
def get_Language(self) -> WinRT_String: ...
|
|
754
|
+
@winrt_commethod(22)
|
|
755
|
+
def put_Language(self, value: WinRT_String) -> Void: ...
|
|
756
|
+
@winrt_commethod(23)
|
|
757
|
+
def get_IsTextScaleFactorEnabled(self) -> Boolean: ...
|
|
758
|
+
@winrt_commethod(24)
|
|
759
|
+
def put_IsTextScaleFactorEnabled(self, value: Boolean) -> Void: ...
|
|
760
|
+
@winrt_commethod(25)
|
|
761
|
+
def get_TextDecorations(self) -> win32more.Windows.UI.Text.TextDecorations: ...
|
|
762
|
+
@winrt_commethod(26)
|
|
763
|
+
def put_TextDecorations(self, value: win32more.Windows.UI.Text.TextDecorations) -> Void: ...
|
|
764
|
+
@winrt_commethod(27)
|
|
765
|
+
def get_ContentStart(self) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
766
|
+
@winrt_commethod(28)
|
|
767
|
+
def get_ContentEnd(self) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
768
|
+
@winrt_commethod(29)
|
|
769
|
+
def get_ElementStart(self) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
770
|
+
@winrt_commethod(30)
|
|
771
|
+
def get_ElementEnd(self) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
772
|
+
@winrt_commethod(31)
|
|
773
|
+
def get_AllowFocusOnInteraction(self) -> Boolean: ...
|
|
774
|
+
@winrt_commethod(32)
|
|
775
|
+
def put_AllowFocusOnInteraction(self, value: Boolean) -> Void: ...
|
|
776
|
+
@winrt_commethod(33)
|
|
777
|
+
def get_AccessKey(self) -> WinRT_String: ...
|
|
778
|
+
@winrt_commethod(34)
|
|
779
|
+
def put_AccessKey(self, value: WinRT_String) -> Void: ...
|
|
780
|
+
@winrt_commethod(35)
|
|
781
|
+
def get_ExitDisplayModeOnAccessKeyInvoked(self) -> Boolean: ...
|
|
782
|
+
@winrt_commethod(36)
|
|
783
|
+
def put_ExitDisplayModeOnAccessKeyInvoked(self, value: Boolean) -> Void: ...
|
|
784
|
+
@winrt_commethod(37)
|
|
785
|
+
def get_IsAccessKeyScope(self) -> Boolean: ...
|
|
786
|
+
@winrt_commethod(38)
|
|
787
|
+
def put_IsAccessKeyScope(self, value: Boolean) -> Void: ...
|
|
788
|
+
@winrt_commethod(39)
|
|
789
|
+
def get_AccessKeyScopeOwner(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
790
|
+
@winrt_commethod(40)
|
|
791
|
+
def put_AccessKeyScopeOwner(self, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
792
|
+
@winrt_commethod(41)
|
|
793
|
+
def get_KeyTipPlacementMode(self) -> win32more.Microsoft.UI.Xaml.Input.KeyTipPlacementMode: ...
|
|
794
|
+
@winrt_commethod(42)
|
|
795
|
+
def put_KeyTipPlacementMode(self, value: win32more.Microsoft.UI.Xaml.Input.KeyTipPlacementMode) -> Void: ...
|
|
796
|
+
@winrt_commethod(43)
|
|
797
|
+
def get_KeyTipHorizontalOffset(self) -> Double: ...
|
|
798
|
+
@winrt_commethod(44)
|
|
799
|
+
def put_KeyTipHorizontalOffset(self, value: Double) -> Void: ...
|
|
800
|
+
@winrt_commethod(45)
|
|
801
|
+
def get_KeyTipVerticalOffset(self) -> Double: ...
|
|
802
|
+
@winrt_commethod(46)
|
|
803
|
+
def put_KeyTipVerticalOffset(self, value: Double) -> Void: ...
|
|
804
|
+
@winrt_commethod(47)
|
|
805
|
+
def get_XamlRoot(self) -> win32more.Microsoft.UI.Xaml.XamlRoot: ...
|
|
806
|
+
@winrt_commethod(48)
|
|
807
|
+
def put_XamlRoot(self, value: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
808
|
+
@winrt_commethod(49)
|
|
809
|
+
def add_AccessKeyDisplayRequested(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyDisplayRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
810
|
+
@winrt_commethod(50)
|
|
811
|
+
def remove_AccessKeyDisplayRequested(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
812
|
+
@winrt_commethod(51)
|
|
813
|
+
def add_AccessKeyDisplayDismissed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyDisplayDismissedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
814
|
+
@winrt_commethod(52)
|
|
815
|
+
def remove_AccessKeyDisplayDismissed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
816
|
+
@winrt_commethod(53)
|
|
817
|
+
def add_AccessKeyInvoked(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyInvokedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
818
|
+
@winrt_commethod(54)
|
|
819
|
+
def remove_AccessKeyInvoked(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
820
|
+
@winrt_commethod(55)
|
|
821
|
+
def FindName(self, name: WinRT_String) -> IInspectable: ...
|
|
822
|
+
AccessKey = property(get_AccessKey, put_AccessKey)
|
|
823
|
+
AccessKeyScopeOwner = property(get_AccessKeyScopeOwner, put_AccessKeyScopeOwner)
|
|
824
|
+
AllowFocusOnInteraction = property(get_AllowFocusOnInteraction, put_AllowFocusOnInteraction)
|
|
825
|
+
CharacterSpacing = property(get_CharacterSpacing, put_CharacterSpacing)
|
|
826
|
+
ContentEnd = property(get_ContentEnd, None)
|
|
827
|
+
ContentStart = property(get_ContentStart, None)
|
|
828
|
+
ElementEnd = property(get_ElementEnd, None)
|
|
829
|
+
ElementStart = property(get_ElementStart, None)
|
|
830
|
+
ExitDisplayModeOnAccessKeyInvoked = property(get_ExitDisplayModeOnAccessKeyInvoked, put_ExitDisplayModeOnAccessKeyInvoked)
|
|
831
|
+
FontFamily = property(get_FontFamily, put_FontFamily)
|
|
832
|
+
FontSize = property(get_FontSize, put_FontSize)
|
|
833
|
+
FontStretch = property(get_FontStretch, put_FontStretch)
|
|
834
|
+
FontStyle = property(get_FontStyle, put_FontStyle)
|
|
835
|
+
FontWeight = property(get_FontWeight, put_FontWeight)
|
|
836
|
+
Foreground = property(get_Foreground, put_Foreground)
|
|
837
|
+
IsAccessKeyScope = property(get_IsAccessKeyScope, put_IsAccessKeyScope)
|
|
838
|
+
IsTextScaleFactorEnabled = property(get_IsTextScaleFactorEnabled, put_IsTextScaleFactorEnabled)
|
|
839
|
+
KeyTipHorizontalOffset = property(get_KeyTipHorizontalOffset, put_KeyTipHorizontalOffset)
|
|
840
|
+
KeyTipPlacementMode = property(get_KeyTipPlacementMode, put_KeyTipPlacementMode)
|
|
841
|
+
KeyTipVerticalOffset = property(get_KeyTipVerticalOffset, put_KeyTipVerticalOffset)
|
|
842
|
+
Language = property(get_Language, put_Language)
|
|
843
|
+
Name = property(get_Name, None)
|
|
844
|
+
TextDecorations = property(get_TextDecorations, put_TextDecorations)
|
|
845
|
+
XamlRoot = property(get_XamlRoot, put_XamlRoot)
|
|
846
|
+
AccessKeyDisplayRequested = event()
|
|
847
|
+
AccessKeyDisplayDismissed = event()
|
|
848
|
+
AccessKeyInvoked = event()
|
|
849
|
+
class ITextElementFactory(ComPtr):
|
|
850
|
+
extends: IInspectable
|
|
851
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextElementFactory'
|
|
852
|
+
_iid_ = Guid('{df51fb95-a5e6-5b16-8e88-9f7cbfa234b1}')
|
|
853
|
+
class ITextElementOverrides(ComPtr):
|
|
854
|
+
extends: IInspectable
|
|
855
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextElementOverrides'
|
|
856
|
+
_iid_ = Guid('{41b01380-e49f-5fda-8c72-acc1ac1e91df}')
|
|
857
|
+
@winrt_commethod(6)
|
|
858
|
+
def OnDisconnectVisualChildren(self) -> Void: ...
|
|
859
|
+
class ITextElementStatics(ComPtr):
|
|
860
|
+
extends: IInspectable
|
|
861
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextElementStatics'
|
|
862
|
+
_iid_ = Guid('{c9b55919-e1fe-5acd-bac7-c9d7f413b35c}')
|
|
863
|
+
@winrt_commethod(6)
|
|
864
|
+
def get_FontSizeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
865
|
+
@winrt_commethod(7)
|
|
866
|
+
def get_FontFamilyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
867
|
+
@winrt_commethod(8)
|
|
868
|
+
def get_FontWeightProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
869
|
+
@winrt_commethod(9)
|
|
870
|
+
def get_FontStyleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
871
|
+
@winrt_commethod(10)
|
|
872
|
+
def get_FontStretchProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
873
|
+
@winrt_commethod(11)
|
|
874
|
+
def get_CharacterSpacingProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
875
|
+
@winrt_commethod(12)
|
|
876
|
+
def get_ForegroundProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
877
|
+
@winrt_commethod(13)
|
|
878
|
+
def get_LanguageProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
879
|
+
@winrt_commethod(14)
|
|
880
|
+
def get_IsTextScaleFactorEnabledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
881
|
+
@winrt_commethod(15)
|
|
882
|
+
def get_TextDecorationsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
883
|
+
@winrt_commethod(16)
|
|
884
|
+
def get_AllowFocusOnInteractionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
885
|
+
@winrt_commethod(17)
|
|
886
|
+
def get_AccessKeyProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
887
|
+
@winrt_commethod(18)
|
|
888
|
+
def get_ExitDisplayModeOnAccessKeyInvokedProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
889
|
+
@winrt_commethod(19)
|
|
890
|
+
def get_IsAccessKeyScopeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
891
|
+
@winrt_commethod(20)
|
|
892
|
+
def get_AccessKeyScopeOwnerProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
893
|
+
@winrt_commethod(21)
|
|
894
|
+
def get_KeyTipPlacementModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
895
|
+
@winrt_commethod(22)
|
|
896
|
+
def get_KeyTipHorizontalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
897
|
+
@winrt_commethod(23)
|
|
898
|
+
def get_KeyTipVerticalOffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
899
|
+
AccessKeyProperty = property(get_AccessKeyProperty, None)
|
|
900
|
+
AccessKeyScopeOwnerProperty = property(get_AccessKeyScopeOwnerProperty, None)
|
|
901
|
+
AllowFocusOnInteractionProperty = property(get_AllowFocusOnInteractionProperty, None)
|
|
902
|
+
CharacterSpacingProperty = property(get_CharacterSpacingProperty, None)
|
|
903
|
+
ExitDisplayModeOnAccessKeyInvokedProperty = property(get_ExitDisplayModeOnAccessKeyInvokedProperty, None)
|
|
904
|
+
FontFamilyProperty = property(get_FontFamilyProperty, None)
|
|
905
|
+
FontSizeProperty = property(get_FontSizeProperty, None)
|
|
906
|
+
FontStretchProperty = property(get_FontStretchProperty, None)
|
|
907
|
+
FontStyleProperty = property(get_FontStyleProperty, None)
|
|
908
|
+
FontWeightProperty = property(get_FontWeightProperty, None)
|
|
909
|
+
ForegroundProperty = property(get_ForegroundProperty, None)
|
|
910
|
+
IsAccessKeyScopeProperty = property(get_IsAccessKeyScopeProperty, None)
|
|
911
|
+
IsTextScaleFactorEnabledProperty = property(get_IsTextScaleFactorEnabledProperty, None)
|
|
912
|
+
KeyTipHorizontalOffsetProperty = property(get_KeyTipHorizontalOffsetProperty, None)
|
|
913
|
+
KeyTipPlacementModeProperty = property(get_KeyTipPlacementModeProperty, None)
|
|
914
|
+
KeyTipVerticalOffsetProperty = property(get_KeyTipVerticalOffsetProperty, None)
|
|
915
|
+
LanguageProperty = property(get_LanguageProperty, None)
|
|
916
|
+
TextDecorationsProperty = property(get_TextDecorationsProperty, None)
|
|
917
|
+
class ITextHighlighter(ComPtr):
|
|
918
|
+
extends: IInspectable
|
|
919
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextHighlighter'
|
|
920
|
+
_iid_ = Guid('{b756e861-1d2b-5f6f-81fd-c51a5bc068ff}')
|
|
921
|
+
@winrt_commethod(6)
|
|
922
|
+
def get_Ranges(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.TextRange]: ...
|
|
923
|
+
@winrt_commethod(7)
|
|
924
|
+
def get_Foreground(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
925
|
+
@winrt_commethod(8)
|
|
926
|
+
def put_Foreground(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
927
|
+
@winrt_commethod(9)
|
|
928
|
+
def get_Background(self) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
929
|
+
@winrt_commethod(10)
|
|
930
|
+
def put_Background(self, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
931
|
+
Background = property(get_Background, put_Background)
|
|
932
|
+
Foreground = property(get_Foreground, put_Foreground)
|
|
933
|
+
Ranges = property(get_Ranges, None)
|
|
934
|
+
class ITextHighlighterBase(ComPtr):
|
|
935
|
+
extends: IInspectable
|
|
936
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextHighlighterBase'
|
|
937
|
+
_iid_ = Guid('{5c21aaf0-3a17-5468-8aac-be14db0ed8c1}')
|
|
938
|
+
class ITextHighlighterBaseFactory(ComPtr):
|
|
939
|
+
extends: IInspectable
|
|
940
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextHighlighterBaseFactory'
|
|
941
|
+
_iid_ = Guid('{e091e461-53ab-599e-aaea-800adc72da4f}')
|
|
942
|
+
class ITextHighlighterFactory(ComPtr):
|
|
943
|
+
extends: IInspectable
|
|
944
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextHighlighterFactory'
|
|
945
|
+
_iid_ = Guid('{69c7311f-c019-5b93-b511-81418543bab7}')
|
|
946
|
+
@winrt_commethod(6)
|
|
947
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.TextHighlighter: ...
|
|
948
|
+
class ITextHighlighterStatics(ComPtr):
|
|
949
|
+
extends: IInspectable
|
|
950
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextHighlighterStatics'
|
|
951
|
+
_iid_ = Guid('{4975047a-87ad-51a2-977c-e771de4f4035}')
|
|
952
|
+
@winrt_commethod(6)
|
|
953
|
+
def get_ForegroundProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
954
|
+
@winrt_commethod(7)
|
|
955
|
+
def get_BackgroundProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
956
|
+
BackgroundProperty = property(get_BackgroundProperty, None)
|
|
957
|
+
ForegroundProperty = property(get_ForegroundProperty, None)
|
|
958
|
+
class ITextPointer(ComPtr):
|
|
959
|
+
extends: IInspectable
|
|
960
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITextPointer'
|
|
961
|
+
_iid_ = Guid('{842eb385-ee41-5930-979b-438fa7525a51}')
|
|
962
|
+
@winrt_commethod(6)
|
|
963
|
+
def get_Parent(self) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
964
|
+
@winrt_commethod(7)
|
|
965
|
+
def get_VisualParent(self) -> win32more.Microsoft.UI.Xaml.FrameworkElement: ...
|
|
966
|
+
@winrt_commethod(8)
|
|
967
|
+
def get_LogicalDirection(self) -> win32more.Microsoft.UI.Xaml.Documents.LogicalDirection: ...
|
|
968
|
+
@winrt_commethod(9)
|
|
969
|
+
def get_Offset(self) -> Int32: ...
|
|
970
|
+
@winrt_commethod(10)
|
|
971
|
+
def GetCharacterRect(self, direction: win32more.Microsoft.UI.Xaml.Documents.LogicalDirection) -> win32more.Windows.Foundation.Rect: ...
|
|
972
|
+
@winrt_commethod(11)
|
|
973
|
+
def GetPositionAtOffset(self, offset: Int32, direction: win32more.Microsoft.UI.Xaml.Documents.LogicalDirection) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
974
|
+
LogicalDirection = property(get_LogicalDirection, None)
|
|
975
|
+
Offset = property(get_Offset, None)
|
|
976
|
+
Parent = property(get_Parent, None)
|
|
977
|
+
VisualParent = property(get_VisualParent, None)
|
|
978
|
+
class ITypography(ComPtr):
|
|
979
|
+
extends: IInspectable
|
|
980
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITypography'
|
|
981
|
+
_iid_ = Guid('{fa27e2e3-be5e-5d21-9a5e-90cf102af828}')
|
|
982
|
+
class ITypographyStatics(ComPtr):
|
|
983
|
+
extends: IInspectable
|
|
984
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.ITypographyStatics'
|
|
985
|
+
_iid_ = Guid('{55fe4535-2125-533a-ada8-27be2b9e1193}')
|
|
986
|
+
@winrt_commethod(6)
|
|
987
|
+
def get_AnnotationAlternatesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
988
|
+
@winrt_commethod(7)
|
|
989
|
+
def GetAnnotationAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
990
|
+
@winrt_commethod(8)
|
|
991
|
+
def SetAnnotationAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
992
|
+
@winrt_commethod(9)
|
|
993
|
+
def get_EastAsianExpertFormsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
994
|
+
@winrt_commethod(10)
|
|
995
|
+
def GetEastAsianExpertForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
996
|
+
@winrt_commethod(11)
|
|
997
|
+
def SetEastAsianExpertForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
998
|
+
@winrt_commethod(12)
|
|
999
|
+
def get_EastAsianLanguageProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1000
|
+
@winrt_commethod(13)
|
|
1001
|
+
def GetEastAsianLanguage(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontEastAsianLanguage: ...
|
|
1002
|
+
@winrt_commethod(14)
|
|
1003
|
+
def SetEastAsianLanguage(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontEastAsianLanguage) -> Void: ...
|
|
1004
|
+
@winrt_commethod(15)
|
|
1005
|
+
def get_EastAsianWidthsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1006
|
+
@winrt_commethod(16)
|
|
1007
|
+
def GetEastAsianWidths(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontEastAsianWidths: ...
|
|
1008
|
+
@winrt_commethod(17)
|
|
1009
|
+
def SetEastAsianWidths(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontEastAsianWidths) -> Void: ...
|
|
1010
|
+
@winrt_commethod(18)
|
|
1011
|
+
def get_StandardLigaturesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1012
|
+
@winrt_commethod(19)
|
|
1013
|
+
def GetStandardLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1014
|
+
@winrt_commethod(20)
|
|
1015
|
+
def SetStandardLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1016
|
+
@winrt_commethod(21)
|
|
1017
|
+
def get_ContextualLigaturesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1018
|
+
@winrt_commethod(22)
|
|
1019
|
+
def GetContextualLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1020
|
+
@winrt_commethod(23)
|
|
1021
|
+
def SetContextualLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1022
|
+
@winrt_commethod(24)
|
|
1023
|
+
def get_DiscretionaryLigaturesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1024
|
+
@winrt_commethod(25)
|
|
1025
|
+
def GetDiscretionaryLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1026
|
+
@winrt_commethod(26)
|
|
1027
|
+
def SetDiscretionaryLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1028
|
+
@winrt_commethod(27)
|
|
1029
|
+
def get_HistoricalLigaturesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1030
|
+
@winrt_commethod(28)
|
|
1031
|
+
def GetHistoricalLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1032
|
+
@winrt_commethod(29)
|
|
1033
|
+
def SetHistoricalLigatures(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1034
|
+
@winrt_commethod(30)
|
|
1035
|
+
def get_StandardSwashesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1036
|
+
@winrt_commethod(31)
|
|
1037
|
+
def GetStandardSwashes(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1038
|
+
@winrt_commethod(32)
|
|
1039
|
+
def SetStandardSwashes(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1040
|
+
@winrt_commethod(33)
|
|
1041
|
+
def get_ContextualSwashesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1042
|
+
@winrt_commethod(34)
|
|
1043
|
+
def GetContextualSwashes(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1044
|
+
@winrt_commethod(35)
|
|
1045
|
+
def SetContextualSwashes(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1046
|
+
@winrt_commethod(36)
|
|
1047
|
+
def get_ContextualAlternatesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1048
|
+
@winrt_commethod(37)
|
|
1049
|
+
def GetContextualAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1050
|
+
@winrt_commethod(38)
|
|
1051
|
+
def SetContextualAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1052
|
+
@winrt_commethod(39)
|
|
1053
|
+
def get_StylisticAlternatesProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1054
|
+
@winrt_commethod(40)
|
|
1055
|
+
def GetStylisticAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1056
|
+
@winrt_commethod(41)
|
|
1057
|
+
def SetStylisticAlternates(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1058
|
+
@winrt_commethod(42)
|
|
1059
|
+
def get_StylisticSet1Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1060
|
+
@winrt_commethod(43)
|
|
1061
|
+
def GetStylisticSet1(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1062
|
+
@winrt_commethod(44)
|
|
1063
|
+
def SetStylisticSet1(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1064
|
+
@winrt_commethod(45)
|
|
1065
|
+
def get_StylisticSet2Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1066
|
+
@winrt_commethod(46)
|
|
1067
|
+
def GetStylisticSet2(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1068
|
+
@winrt_commethod(47)
|
|
1069
|
+
def SetStylisticSet2(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1070
|
+
@winrt_commethod(48)
|
|
1071
|
+
def get_StylisticSet3Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1072
|
+
@winrt_commethod(49)
|
|
1073
|
+
def GetStylisticSet3(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1074
|
+
@winrt_commethod(50)
|
|
1075
|
+
def SetStylisticSet3(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1076
|
+
@winrt_commethod(51)
|
|
1077
|
+
def get_StylisticSet4Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1078
|
+
@winrt_commethod(52)
|
|
1079
|
+
def GetStylisticSet4(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1080
|
+
@winrt_commethod(53)
|
|
1081
|
+
def SetStylisticSet4(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1082
|
+
@winrt_commethod(54)
|
|
1083
|
+
def get_StylisticSet5Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1084
|
+
@winrt_commethod(55)
|
|
1085
|
+
def GetStylisticSet5(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1086
|
+
@winrt_commethod(56)
|
|
1087
|
+
def SetStylisticSet5(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1088
|
+
@winrt_commethod(57)
|
|
1089
|
+
def get_StylisticSet6Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1090
|
+
@winrt_commethod(58)
|
|
1091
|
+
def GetStylisticSet6(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1092
|
+
@winrt_commethod(59)
|
|
1093
|
+
def SetStylisticSet6(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1094
|
+
@winrt_commethod(60)
|
|
1095
|
+
def get_StylisticSet7Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1096
|
+
@winrt_commethod(61)
|
|
1097
|
+
def GetStylisticSet7(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1098
|
+
@winrt_commethod(62)
|
|
1099
|
+
def SetStylisticSet7(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1100
|
+
@winrt_commethod(63)
|
|
1101
|
+
def get_StylisticSet8Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1102
|
+
@winrt_commethod(64)
|
|
1103
|
+
def GetStylisticSet8(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1104
|
+
@winrt_commethod(65)
|
|
1105
|
+
def SetStylisticSet8(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1106
|
+
@winrt_commethod(66)
|
|
1107
|
+
def get_StylisticSet9Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1108
|
+
@winrt_commethod(67)
|
|
1109
|
+
def GetStylisticSet9(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1110
|
+
@winrt_commethod(68)
|
|
1111
|
+
def SetStylisticSet9(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1112
|
+
@winrt_commethod(69)
|
|
1113
|
+
def get_StylisticSet10Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1114
|
+
@winrt_commethod(70)
|
|
1115
|
+
def GetStylisticSet10(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1116
|
+
@winrt_commethod(71)
|
|
1117
|
+
def SetStylisticSet10(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1118
|
+
@winrt_commethod(72)
|
|
1119
|
+
def get_StylisticSet11Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1120
|
+
@winrt_commethod(73)
|
|
1121
|
+
def GetStylisticSet11(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1122
|
+
@winrt_commethod(74)
|
|
1123
|
+
def SetStylisticSet11(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1124
|
+
@winrt_commethod(75)
|
|
1125
|
+
def get_StylisticSet12Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1126
|
+
@winrt_commethod(76)
|
|
1127
|
+
def GetStylisticSet12(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1128
|
+
@winrt_commethod(77)
|
|
1129
|
+
def SetStylisticSet12(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1130
|
+
@winrt_commethod(78)
|
|
1131
|
+
def get_StylisticSet13Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1132
|
+
@winrt_commethod(79)
|
|
1133
|
+
def GetStylisticSet13(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1134
|
+
@winrt_commethod(80)
|
|
1135
|
+
def SetStylisticSet13(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1136
|
+
@winrt_commethod(81)
|
|
1137
|
+
def get_StylisticSet14Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1138
|
+
@winrt_commethod(82)
|
|
1139
|
+
def GetStylisticSet14(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1140
|
+
@winrt_commethod(83)
|
|
1141
|
+
def SetStylisticSet14(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1142
|
+
@winrt_commethod(84)
|
|
1143
|
+
def get_StylisticSet15Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1144
|
+
@winrt_commethod(85)
|
|
1145
|
+
def GetStylisticSet15(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1146
|
+
@winrt_commethod(86)
|
|
1147
|
+
def SetStylisticSet15(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1148
|
+
@winrt_commethod(87)
|
|
1149
|
+
def get_StylisticSet16Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1150
|
+
@winrt_commethod(88)
|
|
1151
|
+
def GetStylisticSet16(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1152
|
+
@winrt_commethod(89)
|
|
1153
|
+
def SetStylisticSet16(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1154
|
+
@winrt_commethod(90)
|
|
1155
|
+
def get_StylisticSet17Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1156
|
+
@winrt_commethod(91)
|
|
1157
|
+
def GetStylisticSet17(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1158
|
+
@winrt_commethod(92)
|
|
1159
|
+
def SetStylisticSet17(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1160
|
+
@winrt_commethod(93)
|
|
1161
|
+
def get_StylisticSet18Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1162
|
+
@winrt_commethod(94)
|
|
1163
|
+
def GetStylisticSet18(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1164
|
+
@winrt_commethod(95)
|
|
1165
|
+
def SetStylisticSet18(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1166
|
+
@winrt_commethod(96)
|
|
1167
|
+
def get_StylisticSet19Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1168
|
+
@winrt_commethod(97)
|
|
1169
|
+
def GetStylisticSet19(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1170
|
+
@winrt_commethod(98)
|
|
1171
|
+
def SetStylisticSet19(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1172
|
+
@winrt_commethod(99)
|
|
1173
|
+
def get_StylisticSet20Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1174
|
+
@winrt_commethod(100)
|
|
1175
|
+
def GetStylisticSet20(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1176
|
+
@winrt_commethod(101)
|
|
1177
|
+
def SetStylisticSet20(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1178
|
+
@winrt_commethod(102)
|
|
1179
|
+
def get_CapitalsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1180
|
+
@winrt_commethod(103)
|
|
1181
|
+
def GetCapitals(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontCapitals: ...
|
|
1182
|
+
@winrt_commethod(104)
|
|
1183
|
+
def SetCapitals(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontCapitals) -> Void: ...
|
|
1184
|
+
@winrt_commethod(105)
|
|
1185
|
+
def get_CapitalSpacingProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1186
|
+
@winrt_commethod(106)
|
|
1187
|
+
def GetCapitalSpacing(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1188
|
+
@winrt_commethod(107)
|
|
1189
|
+
def SetCapitalSpacing(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1190
|
+
@winrt_commethod(108)
|
|
1191
|
+
def get_KerningProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1192
|
+
@winrt_commethod(109)
|
|
1193
|
+
def GetKerning(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1194
|
+
@winrt_commethod(110)
|
|
1195
|
+
def SetKerning(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1196
|
+
@winrt_commethod(111)
|
|
1197
|
+
def get_CaseSensitiveFormsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1198
|
+
@winrt_commethod(112)
|
|
1199
|
+
def GetCaseSensitiveForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1200
|
+
@winrt_commethod(113)
|
|
1201
|
+
def SetCaseSensitiveForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1202
|
+
@winrt_commethod(114)
|
|
1203
|
+
def get_HistoricalFormsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1204
|
+
@winrt_commethod(115)
|
|
1205
|
+
def GetHistoricalForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1206
|
+
@winrt_commethod(116)
|
|
1207
|
+
def SetHistoricalForms(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1208
|
+
@winrt_commethod(117)
|
|
1209
|
+
def get_FractionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1210
|
+
@winrt_commethod(118)
|
|
1211
|
+
def GetFraction(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontFraction: ...
|
|
1212
|
+
@winrt_commethod(119)
|
|
1213
|
+
def SetFraction(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontFraction) -> Void: ...
|
|
1214
|
+
@winrt_commethod(120)
|
|
1215
|
+
def get_NumeralStyleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1216
|
+
@winrt_commethod(121)
|
|
1217
|
+
def GetNumeralStyle(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontNumeralStyle: ...
|
|
1218
|
+
@winrt_commethod(122)
|
|
1219
|
+
def SetNumeralStyle(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontNumeralStyle) -> Void: ...
|
|
1220
|
+
@winrt_commethod(123)
|
|
1221
|
+
def get_NumeralAlignmentProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1222
|
+
@winrt_commethod(124)
|
|
1223
|
+
def GetNumeralAlignment(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontNumeralAlignment: ...
|
|
1224
|
+
@winrt_commethod(125)
|
|
1225
|
+
def SetNumeralAlignment(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontNumeralAlignment) -> Void: ...
|
|
1226
|
+
@winrt_commethod(126)
|
|
1227
|
+
def get_SlashedZeroProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1228
|
+
@winrt_commethod(127)
|
|
1229
|
+
def GetSlashedZero(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1230
|
+
@winrt_commethod(128)
|
|
1231
|
+
def SetSlashedZero(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1232
|
+
@winrt_commethod(129)
|
|
1233
|
+
def get_MathematicalGreekProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1234
|
+
@winrt_commethod(130)
|
|
1235
|
+
def GetMathematicalGreek(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1236
|
+
@winrt_commethod(131)
|
|
1237
|
+
def SetMathematicalGreek(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1238
|
+
@winrt_commethod(132)
|
|
1239
|
+
def get_VariantsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1240
|
+
@winrt_commethod(133)
|
|
1241
|
+
def GetVariants(self, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontVariants: ...
|
|
1242
|
+
@winrt_commethod(134)
|
|
1243
|
+
def SetVariants(self, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontVariants) -> Void: ...
|
|
1244
|
+
AnnotationAlternatesProperty = property(get_AnnotationAlternatesProperty, None)
|
|
1245
|
+
CapitalSpacingProperty = property(get_CapitalSpacingProperty, None)
|
|
1246
|
+
CapitalsProperty = property(get_CapitalsProperty, None)
|
|
1247
|
+
CaseSensitiveFormsProperty = property(get_CaseSensitiveFormsProperty, None)
|
|
1248
|
+
ContextualAlternatesProperty = property(get_ContextualAlternatesProperty, None)
|
|
1249
|
+
ContextualLigaturesProperty = property(get_ContextualLigaturesProperty, None)
|
|
1250
|
+
ContextualSwashesProperty = property(get_ContextualSwashesProperty, None)
|
|
1251
|
+
DiscretionaryLigaturesProperty = property(get_DiscretionaryLigaturesProperty, None)
|
|
1252
|
+
EastAsianExpertFormsProperty = property(get_EastAsianExpertFormsProperty, None)
|
|
1253
|
+
EastAsianLanguageProperty = property(get_EastAsianLanguageProperty, None)
|
|
1254
|
+
EastAsianWidthsProperty = property(get_EastAsianWidthsProperty, None)
|
|
1255
|
+
FractionProperty = property(get_FractionProperty, None)
|
|
1256
|
+
HistoricalFormsProperty = property(get_HistoricalFormsProperty, None)
|
|
1257
|
+
HistoricalLigaturesProperty = property(get_HistoricalLigaturesProperty, None)
|
|
1258
|
+
KerningProperty = property(get_KerningProperty, None)
|
|
1259
|
+
MathematicalGreekProperty = property(get_MathematicalGreekProperty, None)
|
|
1260
|
+
NumeralAlignmentProperty = property(get_NumeralAlignmentProperty, None)
|
|
1261
|
+
NumeralStyleProperty = property(get_NumeralStyleProperty, None)
|
|
1262
|
+
SlashedZeroProperty = property(get_SlashedZeroProperty, None)
|
|
1263
|
+
StandardLigaturesProperty = property(get_StandardLigaturesProperty, None)
|
|
1264
|
+
StandardSwashesProperty = property(get_StandardSwashesProperty, None)
|
|
1265
|
+
StylisticAlternatesProperty = property(get_StylisticAlternatesProperty, None)
|
|
1266
|
+
StylisticSet10Property = property(get_StylisticSet10Property, None)
|
|
1267
|
+
StylisticSet11Property = property(get_StylisticSet11Property, None)
|
|
1268
|
+
StylisticSet12Property = property(get_StylisticSet12Property, None)
|
|
1269
|
+
StylisticSet13Property = property(get_StylisticSet13Property, None)
|
|
1270
|
+
StylisticSet14Property = property(get_StylisticSet14Property, None)
|
|
1271
|
+
StylisticSet15Property = property(get_StylisticSet15Property, None)
|
|
1272
|
+
StylisticSet16Property = property(get_StylisticSet16Property, None)
|
|
1273
|
+
StylisticSet17Property = property(get_StylisticSet17Property, None)
|
|
1274
|
+
StylisticSet18Property = property(get_StylisticSet18Property, None)
|
|
1275
|
+
StylisticSet19Property = property(get_StylisticSet19Property, None)
|
|
1276
|
+
StylisticSet1Property = property(get_StylisticSet1Property, None)
|
|
1277
|
+
StylisticSet20Property = property(get_StylisticSet20Property, None)
|
|
1278
|
+
StylisticSet2Property = property(get_StylisticSet2Property, None)
|
|
1279
|
+
StylisticSet3Property = property(get_StylisticSet3Property, None)
|
|
1280
|
+
StylisticSet4Property = property(get_StylisticSet4Property, None)
|
|
1281
|
+
StylisticSet5Property = property(get_StylisticSet5Property, None)
|
|
1282
|
+
StylisticSet6Property = property(get_StylisticSet6Property, None)
|
|
1283
|
+
StylisticSet7Property = property(get_StylisticSet7Property, None)
|
|
1284
|
+
StylisticSet8Property = property(get_StylisticSet8Property, None)
|
|
1285
|
+
StylisticSet9Property = property(get_StylisticSet9Property, None)
|
|
1286
|
+
VariantsProperty = property(get_VariantsProperty, None)
|
|
1287
|
+
class IUnderline(ComPtr):
|
|
1288
|
+
extends: IInspectable
|
|
1289
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.IUnderline'
|
|
1290
|
+
_iid_ = Guid('{68aaec6e-ea71-5ed2-b83e-91684b25efb9}')
|
|
1291
|
+
class Inline(ComPtr):
|
|
1292
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.TextElement
|
|
1293
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IInline
|
|
1294
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Inline'
|
|
1295
|
+
def __init__(self, *args, **kwargs):
|
|
1296
|
+
if kwargs:
|
|
1297
|
+
super().__init__(**kwargs)
|
|
1298
|
+
elif len(args) == 0:
|
|
1299
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Inline.CreateInstance(*args, None, None))
|
|
1300
|
+
else:
|
|
1301
|
+
raise ValueError('no matched constructor')
|
|
1302
|
+
@winrt_factorymethod
|
|
1303
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Documents.IInlineFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Inline: ...
|
|
1304
|
+
class InlineCollection(ComPtr):
|
|
1305
|
+
extends: IInspectable
|
|
1306
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Documents.Inline]]
|
|
1307
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline]
|
|
1308
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.InlineCollection'
|
|
1309
|
+
@winrt_mixinmethod
|
|
1310
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], index: UInt32) -> win32more.Microsoft.UI.Xaml.Documents.Inline: ...
|
|
1311
|
+
@winrt_mixinmethod
|
|
1312
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> UInt32: ...
|
|
1313
|
+
@winrt_mixinmethod
|
|
1314
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Documents.Inline]: ...
|
|
1315
|
+
@winrt_mixinmethod
|
|
1316
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], value: win32more.Microsoft.UI.Xaml.Documents.Inline, index: POINTER(UInt32)) -> Boolean: ...
|
|
1317
|
+
@winrt_mixinmethod
|
|
1318
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], index: UInt32, value: win32more.Microsoft.UI.Xaml.Documents.Inline) -> Void: ...
|
|
1319
|
+
@winrt_mixinmethod
|
|
1320
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], index: UInt32, value: win32more.Microsoft.UI.Xaml.Documents.Inline) -> Void: ...
|
|
1321
|
+
@winrt_mixinmethod
|
|
1322
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], index: UInt32) -> Void: ...
|
|
1323
|
+
@winrt_mixinmethod
|
|
1324
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], value: win32more.Microsoft.UI.Xaml.Documents.Inline) -> Void: ...
|
|
1325
|
+
@winrt_mixinmethod
|
|
1326
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> Void: ...
|
|
1327
|
+
@winrt_mixinmethod
|
|
1328
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> Void: ...
|
|
1329
|
+
@winrt_mixinmethod
|
|
1330
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> UInt32: ...
|
|
1331
|
+
@winrt_mixinmethod
|
|
1332
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.Inline], items: PassArray[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> Void: ...
|
|
1333
|
+
@winrt_mixinmethod
|
|
1334
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Documents.Inline]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Documents.Inline]: ...
|
|
1335
|
+
Size = property(get_Size, None)
|
|
1336
|
+
class InlineUIContainer(ComPtr):
|
|
1337
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Inline
|
|
1338
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IInlineUIContainer
|
|
1339
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.InlineUIContainer'
|
|
1340
|
+
def __init__(self, *args, **kwargs):
|
|
1341
|
+
if kwargs:
|
|
1342
|
+
super().__init__(**kwargs)
|
|
1343
|
+
elif len(args) == 0:
|
|
1344
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.InlineUIContainer.CreateInstance(*args))
|
|
1345
|
+
else:
|
|
1346
|
+
raise ValueError('no matched constructor')
|
|
1347
|
+
@winrt_activatemethod
|
|
1348
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.InlineUIContainer: ...
|
|
1349
|
+
@winrt_mixinmethod
|
|
1350
|
+
def get_Child(self: win32more.Microsoft.UI.Xaml.Documents.IInlineUIContainer) -> win32more.Microsoft.UI.Xaml.UIElement: ...
|
|
1351
|
+
@winrt_mixinmethod
|
|
1352
|
+
def put_Child(self: win32more.Microsoft.UI.Xaml.Documents.IInlineUIContainer, value: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
1353
|
+
Child = property(get_Child, put_Child)
|
|
1354
|
+
class Italic(ComPtr):
|
|
1355
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Span
|
|
1356
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IItalic
|
|
1357
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Italic'
|
|
1358
|
+
def __init__(self, *args, **kwargs):
|
|
1359
|
+
if kwargs:
|
|
1360
|
+
super().__init__(**kwargs)
|
|
1361
|
+
elif len(args) == 0:
|
|
1362
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Italic.CreateInstance(*args))
|
|
1363
|
+
else:
|
|
1364
|
+
raise ValueError('no matched constructor')
|
|
1365
|
+
@winrt_activatemethod
|
|
1366
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Italic: ...
|
|
1367
|
+
class LineBreak(ComPtr):
|
|
1368
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Inline
|
|
1369
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ILineBreak
|
|
1370
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.LineBreak'
|
|
1371
|
+
def __init__(self, *args, **kwargs):
|
|
1372
|
+
if kwargs:
|
|
1373
|
+
super().__init__(**kwargs)
|
|
1374
|
+
elif len(args) == 0:
|
|
1375
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.LineBreak.CreateInstance(*args))
|
|
1376
|
+
else:
|
|
1377
|
+
raise ValueError('no matched constructor')
|
|
1378
|
+
@winrt_activatemethod
|
|
1379
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.LineBreak: ...
|
|
1380
|
+
class LogicalDirection(Enum, Int32):
|
|
1381
|
+
Backward = 0
|
|
1382
|
+
Forward = 1
|
|
1383
|
+
class _Paragraph_Meta_(ComPtr.__class__):
|
|
1384
|
+
pass
|
|
1385
|
+
class Paragraph(ComPtr, metaclass=_Paragraph_Meta_):
|
|
1386
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Block
|
|
1387
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IParagraph
|
|
1388
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Paragraph'
|
|
1389
|
+
def __init__(self, *args, **kwargs):
|
|
1390
|
+
if kwargs:
|
|
1391
|
+
super().__init__(**kwargs)
|
|
1392
|
+
elif len(args) == 0:
|
|
1393
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Paragraph.CreateInstance(*args))
|
|
1394
|
+
else:
|
|
1395
|
+
raise ValueError('no matched constructor')
|
|
1396
|
+
@winrt_activatemethod
|
|
1397
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Paragraph: ...
|
|
1398
|
+
@winrt_mixinmethod
|
|
1399
|
+
def get_Inlines(self: win32more.Microsoft.UI.Xaml.Documents.IParagraph) -> win32more.Microsoft.UI.Xaml.Documents.InlineCollection: ...
|
|
1400
|
+
@winrt_mixinmethod
|
|
1401
|
+
def get_TextIndent(self: win32more.Microsoft.UI.Xaml.Documents.IParagraph) -> Double: ...
|
|
1402
|
+
@winrt_mixinmethod
|
|
1403
|
+
def put_TextIndent(self: win32more.Microsoft.UI.Xaml.Documents.IParagraph, value: Double) -> Void: ...
|
|
1404
|
+
@winrt_classmethod
|
|
1405
|
+
def get_TextIndentProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IParagraphStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1406
|
+
Inlines = property(get_Inlines, None)
|
|
1407
|
+
TextIndent = property(get_TextIndent, put_TextIndent)
|
|
1408
|
+
_Paragraph_Meta_.TextIndentProperty = property(get_TextIndentProperty, None)
|
|
1409
|
+
class _Run_Meta_(ComPtr.__class__):
|
|
1410
|
+
pass
|
|
1411
|
+
class Run(ComPtr, metaclass=_Run_Meta_):
|
|
1412
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Inline
|
|
1413
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IRun
|
|
1414
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Run'
|
|
1415
|
+
def __init__(self, *args, **kwargs):
|
|
1416
|
+
if kwargs:
|
|
1417
|
+
super().__init__(**kwargs)
|
|
1418
|
+
elif len(args) == 0:
|
|
1419
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Run.CreateInstance(*args))
|
|
1420
|
+
else:
|
|
1421
|
+
raise ValueError('no matched constructor')
|
|
1422
|
+
@winrt_activatemethod
|
|
1423
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Run: ...
|
|
1424
|
+
@winrt_mixinmethod
|
|
1425
|
+
def get_Text(self: win32more.Microsoft.UI.Xaml.Documents.IRun) -> WinRT_String: ...
|
|
1426
|
+
@winrt_mixinmethod
|
|
1427
|
+
def put_Text(self: win32more.Microsoft.UI.Xaml.Documents.IRun, value: WinRT_String) -> Void: ...
|
|
1428
|
+
@winrt_mixinmethod
|
|
1429
|
+
def get_FlowDirection(self: win32more.Microsoft.UI.Xaml.Documents.IRun) -> win32more.Microsoft.UI.Xaml.FlowDirection: ...
|
|
1430
|
+
@winrt_mixinmethod
|
|
1431
|
+
def put_FlowDirection(self: win32more.Microsoft.UI.Xaml.Documents.IRun, value: win32more.Microsoft.UI.Xaml.FlowDirection) -> Void: ...
|
|
1432
|
+
@winrt_classmethod
|
|
1433
|
+
def get_FlowDirectionProperty(cls: win32more.Microsoft.UI.Xaml.Documents.IRunStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1434
|
+
FlowDirection = property(get_FlowDirection, put_FlowDirection)
|
|
1435
|
+
Text = property(get_Text, put_Text)
|
|
1436
|
+
_Run_Meta_.FlowDirectionProperty = property(get_FlowDirectionProperty, None)
|
|
1437
|
+
class Span(ComPtr):
|
|
1438
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Inline
|
|
1439
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ISpan
|
|
1440
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Span'
|
|
1441
|
+
def __init__(self, *args, **kwargs):
|
|
1442
|
+
if kwargs:
|
|
1443
|
+
super().__init__(**kwargs)
|
|
1444
|
+
elif len(args) == 0:
|
|
1445
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Span.CreateInstance(*args, None, None))
|
|
1446
|
+
else:
|
|
1447
|
+
raise ValueError('no matched constructor')
|
|
1448
|
+
@winrt_factorymethod
|
|
1449
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Documents.ISpanFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.Span: ...
|
|
1450
|
+
@winrt_mixinmethod
|
|
1451
|
+
def get_Inlines(self: win32more.Microsoft.UI.Xaml.Documents.ISpan) -> win32more.Microsoft.UI.Xaml.Documents.InlineCollection: ...
|
|
1452
|
+
@winrt_mixinmethod
|
|
1453
|
+
def put_Inlines(self: win32more.Microsoft.UI.Xaml.Documents.ISpan, value: win32more.Microsoft.UI.Xaml.Documents.InlineCollection) -> Void: ...
|
|
1454
|
+
Inlines = property(get_Inlines, put_Inlines)
|
|
1455
|
+
class _TextElement_Meta_(ComPtr.__class__):
|
|
1456
|
+
pass
|
|
1457
|
+
class TextElement(ComPtr, metaclass=_TextElement_Meta_):
|
|
1458
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
1459
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ITextElement
|
|
1460
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.TextElement'
|
|
1461
|
+
@winrt_mixinmethod
|
|
1462
|
+
def get_Name(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> WinRT_String: ...
|
|
1463
|
+
@winrt_mixinmethod
|
|
1464
|
+
def get_FontSize(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Double: ...
|
|
1465
|
+
@winrt_mixinmethod
|
|
1466
|
+
def put_FontSize(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Double) -> Void: ...
|
|
1467
|
+
@winrt_mixinmethod
|
|
1468
|
+
def get_FontFamily(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
1469
|
+
@winrt_mixinmethod
|
|
1470
|
+
def put_FontFamily(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Microsoft.UI.Xaml.Media.FontFamily) -> Void: ...
|
|
1471
|
+
@winrt_mixinmethod
|
|
1472
|
+
def get_FontWeight(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
1473
|
+
@winrt_mixinmethod
|
|
1474
|
+
def put_FontWeight(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Windows.UI.Text.FontWeight) -> Void: ...
|
|
1475
|
+
@winrt_mixinmethod
|
|
1476
|
+
def get_FontStyle(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Windows.UI.Text.FontStyle: ...
|
|
1477
|
+
@winrt_mixinmethod
|
|
1478
|
+
def put_FontStyle(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Windows.UI.Text.FontStyle) -> Void: ...
|
|
1479
|
+
@winrt_mixinmethod
|
|
1480
|
+
def get_FontStretch(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Windows.UI.Text.FontStretch: ...
|
|
1481
|
+
@winrt_mixinmethod
|
|
1482
|
+
def put_FontStretch(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Windows.UI.Text.FontStretch) -> Void: ...
|
|
1483
|
+
@winrt_mixinmethod
|
|
1484
|
+
def get_CharacterSpacing(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Int32: ...
|
|
1485
|
+
@winrt_mixinmethod
|
|
1486
|
+
def put_CharacterSpacing(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Int32) -> Void: ...
|
|
1487
|
+
@winrt_mixinmethod
|
|
1488
|
+
def get_Foreground(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
1489
|
+
@winrt_mixinmethod
|
|
1490
|
+
def put_Foreground(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
1491
|
+
@winrt_mixinmethod
|
|
1492
|
+
def get_Language(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> WinRT_String: ...
|
|
1493
|
+
@winrt_mixinmethod
|
|
1494
|
+
def put_Language(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: WinRT_String) -> Void: ...
|
|
1495
|
+
@winrt_mixinmethod
|
|
1496
|
+
def get_IsTextScaleFactorEnabled(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Boolean: ...
|
|
1497
|
+
@winrt_mixinmethod
|
|
1498
|
+
def put_IsTextScaleFactorEnabled(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Boolean) -> Void: ...
|
|
1499
|
+
@winrt_mixinmethod
|
|
1500
|
+
def get_TextDecorations(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Windows.UI.Text.TextDecorations: ...
|
|
1501
|
+
@winrt_mixinmethod
|
|
1502
|
+
def put_TextDecorations(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Windows.UI.Text.TextDecorations) -> Void: ...
|
|
1503
|
+
@winrt_mixinmethod
|
|
1504
|
+
def get_ContentStart(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
1505
|
+
@winrt_mixinmethod
|
|
1506
|
+
def get_ContentEnd(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
1507
|
+
@winrt_mixinmethod
|
|
1508
|
+
def get_ElementStart(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
1509
|
+
@winrt_mixinmethod
|
|
1510
|
+
def get_ElementEnd(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
1511
|
+
@winrt_mixinmethod
|
|
1512
|
+
def get_AllowFocusOnInteraction(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Boolean: ...
|
|
1513
|
+
@winrt_mixinmethod
|
|
1514
|
+
def put_AllowFocusOnInteraction(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Boolean) -> Void: ...
|
|
1515
|
+
@winrt_mixinmethod
|
|
1516
|
+
def get_AccessKey(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> WinRT_String: ...
|
|
1517
|
+
@winrt_mixinmethod
|
|
1518
|
+
def put_AccessKey(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: WinRT_String) -> Void: ...
|
|
1519
|
+
@winrt_mixinmethod
|
|
1520
|
+
def get_ExitDisplayModeOnAccessKeyInvoked(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Boolean: ...
|
|
1521
|
+
@winrt_mixinmethod
|
|
1522
|
+
def put_ExitDisplayModeOnAccessKeyInvoked(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Boolean) -> Void: ...
|
|
1523
|
+
@winrt_mixinmethod
|
|
1524
|
+
def get_IsAccessKeyScope(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Boolean: ...
|
|
1525
|
+
@winrt_mixinmethod
|
|
1526
|
+
def put_IsAccessKeyScope(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Boolean) -> Void: ...
|
|
1527
|
+
@winrt_mixinmethod
|
|
1528
|
+
def get_AccessKeyScopeOwner(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1529
|
+
@winrt_mixinmethod
|
|
1530
|
+
def put_AccessKeyScopeOwner(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Microsoft.UI.Xaml.DependencyObject) -> Void: ...
|
|
1531
|
+
@winrt_mixinmethod
|
|
1532
|
+
def get_KeyTipPlacementMode(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.Input.KeyTipPlacementMode: ...
|
|
1533
|
+
@winrt_mixinmethod
|
|
1534
|
+
def put_KeyTipPlacementMode(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Microsoft.UI.Xaml.Input.KeyTipPlacementMode) -> Void: ...
|
|
1535
|
+
@winrt_mixinmethod
|
|
1536
|
+
def get_KeyTipHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Double: ...
|
|
1537
|
+
@winrt_mixinmethod
|
|
1538
|
+
def put_KeyTipHorizontalOffset(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Double) -> Void: ...
|
|
1539
|
+
@winrt_mixinmethod
|
|
1540
|
+
def get_KeyTipVerticalOffset(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> Double: ...
|
|
1541
|
+
@winrt_mixinmethod
|
|
1542
|
+
def put_KeyTipVerticalOffset(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: Double) -> Void: ...
|
|
1543
|
+
@winrt_mixinmethod
|
|
1544
|
+
def get_XamlRoot(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement) -> win32more.Microsoft.UI.Xaml.XamlRoot: ...
|
|
1545
|
+
@winrt_mixinmethod
|
|
1546
|
+
def put_XamlRoot(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, value: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
1547
|
+
@winrt_mixinmethod
|
|
1548
|
+
def add_AccessKeyDisplayRequested(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyDisplayRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1549
|
+
@winrt_mixinmethod
|
|
1550
|
+
def remove_AccessKeyDisplayRequested(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1551
|
+
@winrt_mixinmethod
|
|
1552
|
+
def add_AccessKeyDisplayDismissed(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyDisplayDismissedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1553
|
+
@winrt_mixinmethod
|
|
1554
|
+
def remove_AccessKeyDisplayDismissed(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1555
|
+
@winrt_mixinmethod
|
|
1556
|
+
def add_AccessKeyInvoked(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Documents.TextElement, win32more.Microsoft.UI.Xaml.Input.AccessKeyInvokedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1557
|
+
@winrt_mixinmethod
|
|
1558
|
+
def remove_AccessKeyInvoked(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1559
|
+
@winrt_mixinmethod
|
|
1560
|
+
def FindName(self: win32more.Microsoft.UI.Xaml.Documents.ITextElement, name: WinRT_String) -> IInspectable: ...
|
|
1561
|
+
@winrt_mixinmethod
|
|
1562
|
+
def OnDisconnectVisualChildren(self: win32more.Microsoft.UI.Xaml.Documents.ITextElementOverrides) -> Void: ...
|
|
1563
|
+
@winrt_classmethod
|
|
1564
|
+
def get_FontSizeProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1565
|
+
@winrt_classmethod
|
|
1566
|
+
def get_FontFamilyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1567
|
+
@winrt_classmethod
|
|
1568
|
+
def get_FontWeightProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1569
|
+
@winrt_classmethod
|
|
1570
|
+
def get_FontStyleProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1571
|
+
@winrt_classmethod
|
|
1572
|
+
def get_FontStretchProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1573
|
+
@winrt_classmethod
|
|
1574
|
+
def get_CharacterSpacingProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1575
|
+
@winrt_classmethod
|
|
1576
|
+
def get_ForegroundProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1577
|
+
@winrt_classmethod
|
|
1578
|
+
def get_LanguageProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1579
|
+
@winrt_classmethod
|
|
1580
|
+
def get_IsTextScaleFactorEnabledProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1581
|
+
@winrt_classmethod
|
|
1582
|
+
def get_TextDecorationsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1583
|
+
@winrt_classmethod
|
|
1584
|
+
def get_AllowFocusOnInteractionProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1585
|
+
@winrt_classmethod
|
|
1586
|
+
def get_AccessKeyProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1587
|
+
@winrt_classmethod
|
|
1588
|
+
def get_ExitDisplayModeOnAccessKeyInvokedProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1589
|
+
@winrt_classmethod
|
|
1590
|
+
def get_IsAccessKeyScopeProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1591
|
+
@winrt_classmethod
|
|
1592
|
+
def get_AccessKeyScopeOwnerProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1593
|
+
@winrt_classmethod
|
|
1594
|
+
def get_KeyTipPlacementModeProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1595
|
+
@winrt_classmethod
|
|
1596
|
+
def get_KeyTipHorizontalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1597
|
+
@winrt_classmethod
|
|
1598
|
+
def get_KeyTipVerticalOffsetProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextElementStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1599
|
+
AccessKey = property(get_AccessKey, put_AccessKey)
|
|
1600
|
+
AccessKeyScopeOwner = property(get_AccessKeyScopeOwner, put_AccessKeyScopeOwner)
|
|
1601
|
+
AllowFocusOnInteraction = property(get_AllowFocusOnInteraction, put_AllowFocusOnInteraction)
|
|
1602
|
+
CharacterSpacing = property(get_CharacterSpacing, put_CharacterSpacing)
|
|
1603
|
+
ContentEnd = property(get_ContentEnd, None)
|
|
1604
|
+
ContentStart = property(get_ContentStart, None)
|
|
1605
|
+
ElementEnd = property(get_ElementEnd, None)
|
|
1606
|
+
ElementStart = property(get_ElementStart, None)
|
|
1607
|
+
ExitDisplayModeOnAccessKeyInvoked = property(get_ExitDisplayModeOnAccessKeyInvoked, put_ExitDisplayModeOnAccessKeyInvoked)
|
|
1608
|
+
FontFamily = property(get_FontFamily, put_FontFamily)
|
|
1609
|
+
FontSize = property(get_FontSize, put_FontSize)
|
|
1610
|
+
FontStretch = property(get_FontStretch, put_FontStretch)
|
|
1611
|
+
FontStyle = property(get_FontStyle, put_FontStyle)
|
|
1612
|
+
FontWeight = property(get_FontWeight, put_FontWeight)
|
|
1613
|
+
Foreground = property(get_Foreground, put_Foreground)
|
|
1614
|
+
IsAccessKeyScope = property(get_IsAccessKeyScope, put_IsAccessKeyScope)
|
|
1615
|
+
IsTextScaleFactorEnabled = property(get_IsTextScaleFactorEnabled, put_IsTextScaleFactorEnabled)
|
|
1616
|
+
KeyTipHorizontalOffset = property(get_KeyTipHorizontalOffset, put_KeyTipHorizontalOffset)
|
|
1617
|
+
KeyTipPlacementMode = property(get_KeyTipPlacementMode, put_KeyTipPlacementMode)
|
|
1618
|
+
KeyTipVerticalOffset = property(get_KeyTipVerticalOffset, put_KeyTipVerticalOffset)
|
|
1619
|
+
Language = property(get_Language, put_Language)
|
|
1620
|
+
Name = property(get_Name, None)
|
|
1621
|
+
TextDecorations = property(get_TextDecorations, put_TextDecorations)
|
|
1622
|
+
XamlRoot = property(get_XamlRoot, put_XamlRoot)
|
|
1623
|
+
_TextElement_Meta_.AccessKeyProperty = property(get_AccessKeyProperty, None)
|
|
1624
|
+
_TextElement_Meta_.AccessKeyScopeOwnerProperty = property(get_AccessKeyScopeOwnerProperty, None)
|
|
1625
|
+
_TextElement_Meta_.AllowFocusOnInteractionProperty = property(get_AllowFocusOnInteractionProperty, None)
|
|
1626
|
+
_TextElement_Meta_.CharacterSpacingProperty = property(get_CharacterSpacingProperty, None)
|
|
1627
|
+
_TextElement_Meta_.ExitDisplayModeOnAccessKeyInvokedProperty = property(get_ExitDisplayModeOnAccessKeyInvokedProperty, None)
|
|
1628
|
+
_TextElement_Meta_.FontFamilyProperty = property(get_FontFamilyProperty, None)
|
|
1629
|
+
_TextElement_Meta_.FontSizeProperty = property(get_FontSizeProperty, None)
|
|
1630
|
+
_TextElement_Meta_.FontStretchProperty = property(get_FontStretchProperty, None)
|
|
1631
|
+
_TextElement_Meta_.FontStyleProperty = property(get_FontStyleProperty, None)
|
|
1632
|
+
_TextElement_Meta_.FontWeightProperty = property(get_FontWeightProperty, None)
|
|
1633
|
+
_TextElement_Meta_.ForegroundProperty = property(get_ForegroundProperty, None)
|
|
1634
|
+
_TextElement_Meta_.IsAccessKeyScopeProperty = property(get_IsAccessKeyScopeProperty, None)
|
|
1635
|
+
_TextElement_Meta_.IsTextScaleFactorEnabledProperty = property(get_IsTextScaleFactorEnabledProperty, None)
|
|
1636
|
+
_TextElement_Meta_.KeyTipHorizontalOffsetProperty = property(get_KeyTipHorizontalOffsetProperty, None)
|
|
1637
|
+
_TextElement_Meta_.KeyTipPlacementModeProperty = property(get_KeyTipPlacementModeProperty, None)
|
|
1638
|
+
_TextElement_Meta_.KeyTipVerticalOffsetProperty = property(get_KeyTipVerticalOffsetProperty, None)
|
|
1639
|
+
_TextElement_Meta_.LanguageProperty = property(get_LanguageProperty, None)
|
|
1640
|
+
_TextElement_Meta_.TextDecorationsProperty = property(get_TextDecorationsProperty, None)
|
|
1641
|
+
AccessKeyDisplayRequested = event()
|
|
1642
|
+
AccessKeyDisplayDismissed = event()
|
|
1643
|
+
AccessKeyInvoked = event()
|
|
1644
|
+
class _TextHighlighter_Meta_(ComPtr.__class__):
|
|
1645
|
+
pass
|
|
1646
|
+
class TextHighlighter(ComPtr, metaclass=_TextHighlighter_Meta_):
|
|
1647
|
+
extends: IInspectable
|
|
1648
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter
|
|
1649
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.TextHighlighter'
|
|
1650
|
+
def __init__(self, *args, **kwargs):
|
|
1651
|
+
if kwargs:
|
|
1652
|
+
super().__init__(**kwargs)
|
|
1653
|
+
elif len(args) == 0:
|
|
1654
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.TextHighlighter.CreateInstance(*args, None, None))
|
|
1655
|
+
else:
|
|
1656
|
+
raise ValueError('no matched constructor')
|
|
1657
|
+
@winrt_factorymethod
|
|
1658
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighterFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Documents.TextHighlighter: ...
|
|
1659
|
+
@winrt_mixinmethod
|
|
1660
|
+
def get_Ranges(self: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Documents.TextRange]: ...
|
|
1661
|
+
@winrt_mixinmethod
|
|
1662
|
+
def get_Foreground(self: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
1663
|
+
@winrt_mixinmethod
|
|
1664
|
+
def put_Foreground(self: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
1665
|
+
@winrt_mixinmethod
|
|
1666
|
+
def get_Background(self: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
1667
|
+
@winrt_mixinmethod
|
|
1668
|
+
def put_Background(self: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighter, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
1669
|
+
@winrt_classmethod
|
|
1670
|
+
def get_ForegroundProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighterStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1671
|
+
@winrt_classmethod
|
|
1672
|
+
def get_BackgroundProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighterStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1673
|
+
Background = property(get_Background, put_Background)
|
|
1674
|
+
Foreground = property(get_Foreground, put_Foreground)
|
|
1675
|
+
Ranges = property(get_Ranges, None)
|
|
1676
|
+
_TextHighlighter_Meta_.BackgroundProperty = property(get_BackgroundProperty, None)
|
|
1677
|
+
_TextHighlighter_Meta_.ForegroundProperty = property(get_ForegroundProperty, None)
|
|
1678
|
+
class TextHighlighterBase(ComPtr):
|
|
1679
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
1680
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ITextHighlighterBase
|
|
1681
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.TextHighlighterBase'
|
|
1682
|
+
class TextPointer(ComPtr):
|
|
1683
|
+
extends: IInspectable
|
|
1684
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ITextPointer
|
|
1685
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.TextPointer'
|
|
1686
|
+
@winrt_mixinmethod
|
|
1687
|
+
def get_Parent(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
1688
|
+
@winrt_mixinmethod
|
|
1689
|
+
def get_VisualParent(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer) -> win32more.Microsoft.UI.Xaml.FrameworkElement: ...
|
|
1690
|
+
@winrt_mixinmethod
|
|
1691
|
+
def get_LogicalDirection(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer) -> win32more.Microsoft.UI.Xaml.Documents.LogicalDirection: ...
|
|
1692
|
+
@winrt_mixinmethod
|
|
1693
|
+
def get_Offset(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer) -> Int32: ...
|
|
1694
|
+
@winrt_mixinmethod
|
|
1695
|
+
def GetCharacterRect(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer, direction: win32more.Microsoft.UI.Xaml.Documents.LogicalDirection) -> win32more.Windows.Foundation.Rect: ...
|
|
1696
|
+
@winrt_mixinmethod
|
|
1697
|
+
def GetPositionAtOffset(self: win32more.Microsoft.UI.Xaml.Documents.ITextPointer, offset: Int32, direction: win32more.Microsoft.UI.Xaml.Documents.LogicalDirection) -> win32more.Microsoft.UI.Xaml.Documents.TextPointer: ...
|
|
1698
|
+
LogicalDirection = property(get_LogicalDirection, None)
|
|
1699
|
+
Offset = property(get_Offset, None)
|
|
1700
|
+
Parent = property(get_Parent, None)
|
|
1701
|
+
VisualParent = property(get_VisualParent, None)
|
|
1702
|
+
class TextRange(Structure):
|
|
1703
|
+
StartIndex: Int32
|
|
1704
|
+
Length: Int32
|
|
1705
|
+
class _Typography_Meta_(ComPtr.__class__):
|
|
1706
|
+
pass
|
|
1707
|
+
class Typography(ComPtr, metaclass=_Typography_Meta_):
|
|
1708
|
+
extends: IInspectable
|
|
1709
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.ITypography
|
|
1710
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Typography'
|
|
1711
|
+
@winrt_classmethod
|
|
1712
|
+
def get_AnnotationAlternatesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1713
|
+
@winrt_classmethod
|
|
1714
|
+
def GetAnnotationAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1715
|
+
@winrt_classmethod
|
|
1716
|
+
def SetAnnotationAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1717
|
+
@winrt_classmethod
|
|
1718
|
+
def get_EastAsianExpertFormsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1719
|
+
@winrt_classmethod
|
|
1720
|
+
def GetEastAsianExpertForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1721
|
+
@winrt_classmethod
|
|
1722
|
+
def SetEastAsianExpertForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1723
|
+
@winrt_classmethod
|
|
1724
|
+
def get_EastAsianLanguageProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1725
|
+
@winrt_classmethod
|
|
1726
|
+
def GetEastAsianLanguage(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontEastAsianLanguage: ...
|
|
1727
|
+
@winrt_classmethod
|
|
1728
|
+
def SetEastAsianLanguage(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontEastAsianLanguage) -> Void: ...
|
|
1729
|
+
@winrt_classmethod
|
|
1730
|
+
def get_EastAsianWidthsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1731
|
+
@winrt_classmethod
|
|
1732
|
+
def GetEastAsianWidths(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontEastAsianWidths: ...
|
|
1733
|
+
@winrt_classmethod
|
|
1734
|
+
def SetEastAsianWidths(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontEastAsianWidths) -> Void: ...
|
|
1735
|
+
@winrt_classmethod
|
|
1736
|
+
def get_StandardLigaturesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1737
|
+
@winrt_classmethod
|
|
1738
|
+
def GetStandardLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1739
|
+
@winrt_classmethod
|
|
1740
|
+
def SetStandardLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1741
|
+
@winrt_classmethod
|
|
1742
|
+
def get_ContextualLigaturesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1743
|
+
@winrt_classmethod
|
|
1744
|
+
def GetContextualLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1745
|
+
@winrt_classmethod
|
|
1746
|
+
def SetContextualLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1747
|
+
@winrt_classmethod
|
|
1748
|
+
def get_DiscretionaryLigaturesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1749
|
+
@winrt_classmethod
|
|
1750
|
+
def GetDiscretionaryLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1751
|
+
@winrt_classmethod
|
|
1752
|
+
def SetDiscretionaryLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1753
|
+
@winrt_classmethod
|
|
1754
|
+
def get_HistoricalLigaturesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1755
|
+
@winrt_classmethod
|
|
1756
|
+
def GetHistoricalLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1757
|
+
@winrt_classmethod
|
|
1758
|
+
def SetHistoricalLigatures(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1759
|
+
@winrt_classmethod
|
|
1760
|
+
def get_StandardSwashesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1761
|
+
@winrt_classmethod
|
|
1762
|
+
def GetStandardSwashes(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1763
|
+
@winrt_classmethod
|
|
1764
|
+
def SetStandardSwashes(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1765
|
+
@winrt_classmethod
|
|
1766
|
+
def get_ContextualSwashesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1767
|
+
@winrt_classmethod
|
|
1768
|
+
def GetContextualSwashes(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1769
|
+
@winrt_classmethod
|
|
1770
|
+
def SetContextualSwashes(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1771
|
+
@winrt_classmethod
|
|
1772
|
+
def get_ContextualAlternatesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1773
|
+
@winrt_classmethod
|
|
1774
|
+
def GetContextualAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1775
|
+
@winrt_classmethod
|
|
1776
|
+
def SetContextualAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1777
|
+
@winrt_classmethod
|
|
1778
|
+
def get_StylisticAlternatesProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1779
|
+
@winrt_classmethod
|
|
1780
|
+
def GetStylisticAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
1781
|
+
@winrt_classmethod
|
|
1782
|
+
def SetStylisticAlternates(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Int32) -> Void: ...
|
|
1783
|
+
@winrt_classmethod
|
|
1784
|
+
def get_StylisticSet1Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1785
|
+
@winrt_classmethod
|
|
1786
|
+
def GetStylisticSet1(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1787
|
+
@winrt_classmethod
|
|
1788
|
+
def SetStylisticSet1(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1789
|
+
@winrt_classmethod
|
|
1790
|
+
def get_StylisticSet2Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1791
|
+
@winrt_classmethod
|
|
1792
|
+
def GetStylisticSet2(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1793
|
+
@winrt_classmethod
|
|
1794
|
+
def SetStylisticSet2(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1795
|
+
@winrt_classmethod
|
|
1796
|
+
def get_StylisticSet3Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1797
|
+
@winrt_classmethod
|
|
1798
|
+
def GetStylisticSet3(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1799
|
+
@winrt_classmethod
|
|
1800
|
+
def SetStylisticSet3(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1801
|
+
@winrt_classmethod
|
|
1802
|
+
def get_StylisticSet4Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1803
|
+
@winrt_classmethod
|
|
1804
|
+
def GetStylisticSet4(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1805
|
+
@winrt_classmethod
|
|
1806
|
+
def SetStylisticSet4(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1807
|
+
@winrt_classmethod
|
|
1808
|
+
def get_StylisticSet5Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1809
|
+
@winrt_classmethod
|
|
1810
|
+
def GetStylisticSet5(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1811
|
+
@winrt_classmethod
|
|
1812
|
+
def SetStylisticSet5(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1813
|
+
@winrt_classmethod
|
|
1814
|
+
def get_StylisticSet6Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1815
|
+
@winrt_classmethod
|
|
1816
|
+
def GetStylisticSet6(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1817
|
+
@winrt_classmethod
|
|
1818
|
+
def SetStylisticSet6(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1819
|
+
@winrt_classmethod
|
|
1820
|
+
def get_StylisticSet7Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1821
|
+
@winrt_classmethod
|
|
1822
|
+
def GetStylisticSet7(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1823
|
+
@winrt_classmethod
|
|
1824
|
+
def SetStylisticSet7(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1825
|
+
@winrt_classmethod
|
|
1826
|
+
def get_StylisticSet8Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1827
|
+
@winrt_classmethod
|
|
1828
|
+
def GetStylisticSet8(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1829
|
+
@winrt_classmethod
|
|
1830
|
+
def SetStylisticSet8(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1831
|
+
@winrt_classmethod
|
|
1832
|
+
def get_StylisticSet9Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1833
|
+
@winrt_classmethod
|
|
1834
|
+
def GetStylisticSet9(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1835
|
+
@winrt_classmethod
|
|
1836
|
+
def SetStylisticSet9(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1837
|
+
@winrt_classmethod
|
|
1838
|
+
def get_StylisticSet10Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1839
|
+
@winrt_classmethod
|
|
1840
|
+
def GetStylisticSet10(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1841
|
+
@winrt_classmethod
|
|
1842
|
+
def SetStylisticSet10(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1843
|
+
@winrt_classmethod
|
|
1844
|
+
def get_StylisticSet11Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1845
|
+
@winrt_classmethod
|
|
1846
|
+
def GetStylisticSet11(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1847
|
+
@winrt_classmethod
|
|
1848
|
+
def SetStylisticSet11(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1849
|
+
@winrt_classmethod
|
|
1850
|
+
def get_StylisticSet12Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1851
|
+
@winrt_classmethod
|
|
1852
|
+
def GetStylisticSet12(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1853
|
+
@winrt_classmethod
|
|
1854
|
+
def SetStylisticSet12(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1855
|
+
@winrt_classmethod
|
|
1856
|
+
def get_StylisticSet13Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1857
|
+
@winrt_classmethod
|
|
1858
|
+
def GetStylisticSet13(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1859
|
+
@winrt_classmethod
|
|
1860
|
+
def SetStylisticSet13(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1861
|
+
@winrt_classmethod
|
|
1862
|
+
def get_StylisticSet14Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1863
|
+
@winrt_classmethod
|
|
1864
|
+
def GetStylisticSet14(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1865
|
+
@winrt_classmethod
|
|
1866
|
+
def SetStylisticSet14(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1867
|
+
@winrt_classmethod
|
|
1868
|
+
def get_StylisticSet15Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1869
|
+
@winrt_classmethod
|
|
1870
|
+
def GetStylisticSet15(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1871
|
+
@winrt_classmethod
|
|
1872
|
+
def SetStylisticSet15(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1873
|
+
@winrt_classmethod
|
|
1874
|
+
def get_StylisticSet16Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1875
|
+
@winrt_classmethod
|
|
1876
|
+
def GetStylisticSet16(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1877
|
+
@winrt_classmethod
|
|
1878
|
+
def SetStylisticSet16(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1879
|
+
@winrt_classmethod
|
|
1880
|
+
def get_StylisticSet17Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1881
|
+
@winrt_classmethod
|
|
1882
|
+
def GetStylisticSet17(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1883
|
+
@winrt_classmethod
|
|
1884
|
+
def SetStylisticSet17(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1885
|
+
@winrt_classmethod
|
|
1886
|
+
def get_StylisticSet18Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1887
|
+
@winrt_classmethod
|
|
1888
|
+
def GetStylisticSet18(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1889
|
+
@winrt_classmethod
|
|
1890
|
+
def SetStylisticSet18(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1891
|
+
@winrt_classmethod
|
|
1892
|
+
def get_StylisticSet19Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1893
|
+
@winrt_classmethod
|
|
1894
|
+
def GetStylisticSet19(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1895
|
+
@winrt_classmethod
|
|
1896
|
+
def SetStylisticSet19(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1897
|
+
@winrt_classmethod
|
|
1898
|
+
def get_StylisticSet20Property(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1899
|
+
@winrt_classmethod
|
|
1900
|
+
def GetStylisticSet20(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1901
|
+
@winrt_classmethod
|
|
1902
|
+
def SetStylisticSet20(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1903
|
+
@winrt_classmethod
|
|
1904
|
+
def get_CapitalsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1905
|
+
@winrt_classmethod
|
|
1906
|
+
def GetCapitals(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontCapitals: ...
|
|
1907
|
+
@winrt_classmethod
|
|
1908
|
+
def SetCapitals(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontCapitals) -> Void: ...
|
|
1909
|
+
@winrt_classmethod
|
|
1910
|
+
def get_CapitalSpacingProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1911
|
+
@winrt_classmethod
|
|
1912
|
+
def GetCapitalSpacing(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1913
|
+
@winrt_classmethod
|
|
1914
|
+
def SetCapitalSpacing(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1915
|
+
@winrt_classmethod
|
|
1916
|
+
def get_KerningProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1917
|
+
@winrt_classmethod
|
|
1918
|
+
def GetKerning(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1919
|
+
@winrt_classmethod
|
|
1920
|
+
def SetKerning(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1921
|
+
@winrt_classmethod
|
|
1922
|
+
def get_CaseSensitiveFormsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1923
|
+
@winrt_classmethod
|
|
1924
|
+
def GetCaseSensitiveForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1925
|
+
@winrt_classmethod
|
|
1926
|
+
def SetCaseSensitiveForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1927
|
+
@winrt_classmethod
|
|
1928
|
+
def get_HistoricalFormsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1929
|
+
@winrt_classmethod
|
|
1930
|
+
def GetHistoricalForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1931
|
+
@winrt_classmethod
|
|
1932
|
+
def SetHistoricalForms(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1933
|
+
@winrt_classmethod
|
|
1934
|
+
def get_FractionProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1935
|
+
@winrt_classmethod
|
|
1936
|
+
def GetFraction(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontFraction: ...
|
|
1937
|
+
@winrt_classmethod
|
|
1938
|
+
def SetFraction(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontFraction) -> Void: ...
|
|
1939
|
+
@winrt_classmethod
|
|
1940
|
+
def get_NumeralStyleProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1941
|
+
@winrt_classmethod
|
|
1942
|
+
def GetNumeralStyle(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontNumeralStyle: ...
|
|
1943
|
+
@winrt_classmethod
|
|
1944
|
+
def SetNumeralStyle(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontNumeralStyle) -> Void: ...
|
|
1945
|
+
@winrt_classmethod
|
|
1946
|
+
def get_NumeralAlignmentProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1947
|
+
@winrt_classmethod
|
|
1948
|
+
def GetNumeralAlignment(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontNumeralAlignment: ...
|
|
1949
|
+
@winrt_classmethod
|
|
1950
|
+
def SetNumeralAlignment(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontNumeralAlignment) -> Void: ...
|
|
1951
|
+
@winrt_classmethod
|
|
1952
|
+
def get_SlashedZeroProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1953
|
+
@winrt_classmethod
|
|
1954
|
+
def GetSlashedZero(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1955
|
+
@winrt_classmethod
|
|
1956
|
+
def SetSlashedZero(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1957
|
+
@winrt_classmethod
|
|
1958
|
+
def get_MathematicalGreekProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1959
|
+
@winrt_classmethod
|
|
1960
|
+
def GetMathematicalGreek(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> Boolean: ...
|
|
1961
|
+
@winrt_classmethod
|
|
1962
|
+
def SetMathematicalGreek(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: Boolean) -> Void: ...
|
|
1963
|
+
@winrt_classmethod
|
|
1964
|
+
def get_VariantsProperty(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1965
|
+
@winrt_classmethod
|
|
1966
|
+
def GetVariants(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.FontVariants: ...
|
|
1967
|
+
@winrt_classmethod
|
|
1968
|
+
def SetVariants(cls: win32more.Microsoft.UI.Xaml.Documents.ITypographyStatics, element: win32more.Microsoft.UI.Xaml.DependencyObject, value: win32more.Microsoft.UI.Xaml.FontVariants) -> Void: ...
|
|
1969
|
+
_Typography_Meta_.AnnotationAlternatesProperty = property(get_AnnotationAlternatesProperty, None)
|
|
1970
|
+
_Typography_Meta_.CapitalSpacingProperty = property(get_CapitalSpacingProperty, None)
|
|
1971
|
+
_Typography_Meta_.CapitalsProperty = property(get_CapitalsProperty, None)
|
|
1972
|
+
_Typography_Meta_.CaseSensitiveFormsProperty = property(get_CaseSensitiveFormsProperty, None)
|
|
1973
|
+
_Typography_Meta_.ContextualAlternatesProperty = property(get_ContextualAlternatesProperty, None)
|
|
1974
|
+
_Typography_Meta_.ContextualLigaturesProperty = property(get_ContextualLigaturesProperty, None)
|
|
1975
|
+
_Typography_Meta_.ContextualSwashesProperty = property(get_ContextualSwashesProperty, None)
|
|
1976
|
+
_Typography_Meta_.DiscretionaryLigaturesProperty = property(get_DiscretionaryLigaturesProperty, None)
|
|
1977
|
+
_Typography_Meta_.EastAsianExpertFormsProperty = property(get_EastAsianExpertFormsProperty, None)
|
|
1978
|
+
_Typography_Meta_.EastAsianLanguageProperty = property(get_EastAsianLanguageProperty, None)
|
|
1979
|
+
_Typography_Meta_.EastAsianWidthsProperty = property(get_EastAsianWidthsProperty, None)
|
|
1980
|
+
_Typography_Meta_.FractionProperty = property(get_FractionProperty, None)
|
|
1981
|
+
_Typography_Meta_.HistoricalFormsProperty = property(get_HistoricalFormsProperty, None)
|
|
1982
|
+
_Typography_Meta_.HistoricalLigaturesProperty = property(get_HistoricalLigaturesProperty, None)
|
|
1983
|
+
_Typography_Meta_.KerningProperty = property(get_KerningProperty, None)
|
|
1984
|
+
_Typography_Meta_.MathematicalGreekProperty = property(get_MathematicalGreekProperty, None)
|
|
1985
|
+
_Typography_Meta_.NumeralAlignmentProperty = property(get_NumeralAlignmentProperty, None)
|
|
1986
|
+
_Typography_Meta_.NumeralStyleProperty = property(get_NumeralStyleProperty, None)
|
|
1987
|
+
_Typography_Meta_.SlashedZeroProperty = property(get_SlashedZeroProperty, None)
|
|
1988
|
+
_Typography_Meta_.StandardLigaturesProperty = property(get_StandardLigaturesProperty, None)
|
|
1989
|
+
_Typography_Meta_.StandardSwashesProperty = property(get_StandardSwashesProperty, None)
|
|
1990
|
+
_Typography_Meta_.StylisticAlternatesProperty = property(get_StylisticAlternatesProperty, None)
|
|
1991
|
+
_Typography_Meta_.StylisticSet10Property = property(get_StylisticSet10Property, None)
|
|
1992
|
+
_Typography_Meta_.StylisticSet11Property = property(get_StylisticSet11Property, None)
|
|
1993
|
+
_Typography_Meta_.StylisticSet12Property = property(get_StylisticSet12Property, None)
|
|
1994
|
+
_Typography_Meta_.StylisticSet13Property = property(get_StylisticSet13Property, None)
|
|
1995
|
+
_Typography_Meta_.StylisticSet14Property = property(get_StylisticSet14Property, None)
|
|
1996
|
+
_Typography_Meta_.StylisticSet15Property = property(get_StylisticSet15Property, None)
|
|
1997
|
+
_Typography_Meta_.StylisticSet16Property = property(get_StylisticSet16Property, None)
|
|
1998
|
+
_Typography_Meta_.StylisticSet17Property = property(get_StylisticSet17Property, None)
|
|
1999
|
+
_Typography_Meta_.StylisticSet18Property = property(get_StylisticSet18Property, None)
|
|
2000
|
+
_Typography_Meta_.StylisticSet19Property = property(get_StylisticSet19Property, None)
|
|
2001
|
+
_Typography_Meta_.StylisticSet1Property = property(get_StylisticSet1Property, None)
|
|
2002
|
+
_Typography_Meta_.StylisticSet20Property = property(get_StylisticSet20Property, None)
|
|
2003
|
+
_Typography_Meta_.StylisticSet2Property = property(get_StylisticSet2Property, None)
|
|
2004
|
+
_Typography_Meta_.StylisticSet3Property = property(get_StylisticSet3Property, None)
|
|
2005
|
+
_Typography_Meta_.StylisticSet4Property = property(get_StylisticSet4Property, None)
|
|
2006
|
+
_Typography_Meta_.StylisticSet5Property = property(get_StylisticSet5Property, None)
|
|
2007
|
+
_Typography_Meta_.StylisticSet6Property = property(get_StylisticSet6Property, None)
|
|
2008
|
+
_Typography_Meta_.StylisticSet7Property = property(get_StylisticSet7Property, None)
|
|
2009
|
+
_Typography_Meta_.StylisticSet8Property = property(get_StylisticSet8Property, None)
|
|
2010
|
+
_Typography_Meta_.StylisticSet9Property = property(get_StylisticSet9Property, None)
|
|
2011
|
+
_Typography_Meta_.VariantsProperty = property(get_VariantsProperty, None)
|
|
2012
|
+
class Underline(ComPtr):
|
|
2013
|
+
extends: win32more.Microsoft.UI.Xaml.Documents.Span
|
|
2014
|
+
default_interface: win32more.Microsoft.UI.Xaml.Documents.IUnderline
|
|
2015
|
+
_classid_ = 'Microsoft.UI.Xaml.Documents.Underline'
|
|
2016
|
+
def __init__(self, *args, **kwargs):
|
|
2017
|
+
if kwargs:
|
|
2018
|
+
super().__init__(**kwargs)
|
|
2019
|
+
elif len(args) == 0:
|
|
2020
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Documents.Underline.CreateInstance(*args))
|
|
2021
|
+
else:
|
|
2022
|
+
raise ValueError('no matched constructor')
|
|
2023
|
+
@winrt_activatemethod
|
|
2024
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Documents.Underline: ...
|
|
2025
|
+
class UnderlineStyle(Enum, Int32):
|
|
2026
|
+
None_ = 0
|
|
2027
|
+
Single = 1
|
|
2028
|
+
|
|
2029
|
+
|
|
2030
|
+
make_ready(__name__)
|