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,1090 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Text
|
|
4
|
+
import win32more.Windows.Foundation
|
|
5
|
+
import win32more.Windows.Storage.Streams
|
|
6
|
+
import win32more.Windows.UI
|
|
7
|
+
import win32more.Windows.UI.Text
|
|
8
|
+
class CaretType(Enum, Int32):
|
|
9
|
+
Normal = 0
|
|
10
|
+
Null = 1
|
|
11
|
+
class FindOptions(Enum, UInt32):
|
|
12
|
+
None_ = 0
|
|
13
|
+
Word = 2
|
|
14
|
+
Case = 4
|
|
15
|
+
class _FontWeights_Meta_(ComPtr.__class__):
|
|
16
|
+
pass
|
|
17
|
+
class FontWeights(ComPtr, metaclass=_FontWeights_Meta_):
|
|
18
|
+
extends: IInspectable
|
|
19
|
+
default_interface: win32more.Microsoft.UI.Text.IFontWeights
|
|
20
|
+
_classid_ = 'Microsoft.UI.Text.FontWeights'
|
|
21
|
+
@winrt_classmethod
|
|
22
|
+
def get_Black(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
23
|
+
@winrt_classmethod
|
|
24
|
+
def get_Bold(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
25
|
+
@winrt_classmethod
|
|
26
|
+
def get_ExtraBlack(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
27
|
+
@winrt_classmethod
|
|
28
|
+
def get_ExtraBold(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
29
|
+
@winrt_classmethod
|
|
30
|
+
def get_ExtraLight(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
31
|
+
@winrt_classmethod
|
|
32
|
+
def get_Light(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
33
|
+
@winrt_classmethod
|
|
34
|
+
def get_Medium(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
35
|
+
@winrt_classmethod
|
|
36
|
+
def get_Normal(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
37
|
+
@winrt_classmethod
|
|
38
|
+
def get_SemiBold(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
39
|
+
@winrt_classmethod
|
|
40
|
+
def get_SemiLight(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
41
|
+
@winrt_classmethod
|
|
42
|
+
def get_Thin(cls: win32more.Microsoft.UI.Text.IFontWeightsStatics) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
43
|
+
_FontWeights_Meta_.Black = property(get_Black, None)
|
|
44
|
+
_FontWeights_Meta_.Bold = property(get_Bold, None)
|
|
45
|
+
_FontWeights_Meta_.ExtraBlack = property(get_ExtraBlack, None)
|
|
46
|
+
_FontWeights_Meta_.ExtraBold = property(get_ExtraBold, None)
|
|
47
|
+
_FontWeights_Meta_.ExtraLight = property(get_ExtraLight, None)
|
|
48
|
+
_FontWeights_Meta_.Light = property(get_Light, None)
|
|
49
|
+
_FontWeights_Meta_.Medium = property(get_Medium, None)
|
|
50
|
+
_FontWeights_Meta_.Normal = property(get_Normal, None)
|
|
51
|
+
_FontWeights_Meta_.SemiBold = property(get_SemiBold, None)
|
|
52
|
+
_FontWeights_Meta_.SemiLight = property(get_SemiLight, None)
|
|
53
|
+
_FontWeights_Meta_.Thin = property(get_Thin, None)
|
|
54
|
+
class FormatEffect(Enum, Int32):
|
|
55
|
+
Off = 0
|
|
56
|
+
On = 1
|
|
57
|
+
Toggle = 2
|
|
58
|
+
Undefined = 3
|
|
59
|
+
class HorizontalCharacterAlignment(Enum, Int32):
|
|
60
|
+
Left = 0
|
|
61
|
+
Right = 1
|
|
62
|
+
Center = 2
|
|
63
|
+
class IFontWeights(ComPtr):
|
|
64
|
+
extends: IInspectable
|
|
65
|
+
_classid_ = 'Microsoft.UI.Text.IFontWeights'
|
|
66
|
+
_iid_ = Guid('{386cd040-5404-5a8d-8bc7-2ca989f5c065}')
|
|
67
|
+
class IFontWeightsStatics(ComPtr):
|
|
68
|
+
extends: IInspectable
|
|
69
|
+
_classid_ = 'Microsoft.UI.Text.IFontWeightsStatics'
|
|
70
|
+
_iid_ = Guid('{cc390df6-76b0-5807-8b9d-e949a4e623ae}')
|
|
71
|
+
@winrt_commethod(6)
|
|
72
|
+
def get_Black(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
73
|
+
@winrt_commethod(7)
|
|
74
|
+
def get_Bold(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
75
|
+
@winrt_commethod(8)
|
|
76
|
+
def get_ExtraBlack(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
77
|
+
@winrt_commethod(9)
|
|
78
|
+
def get_ExtraBold(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
79
|
+
@winrt_commethod(10)
|
|
80
|
+
def get_ExtraLight(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
81
|
+
@winrt_commethod(11)
|
|
82
|
+
def get_Light(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
83
|
+
@winrt_commethod(12)
|
|
84
|
+
def get_Medium(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
85
|
+
@winrt_commethod(13)
|
|
86
|
+
def get_Normal(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
87
|
+
@winrt_commethod(14)
|
|
88
|
+
def get_SemiBold(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
89
|
+
@winrt_commethod(15)
|
|
90
|
+
def get_SemiLight(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
91
|
+
@winrt_commethod(16)
|
|
92
|
+
def get_Thin(self) -> win32more.Windows.UI.Text.FontWeight: ...
|
|
93
|
+
Black = property(get_Black, None)
|
|
94
|
+
Bold = property(get_Bold, None)
|
|
95
|
+
ExtraBlack = property(get_ExtraBlack, None)
|
|
96
|
+
ExtraBold = property(get_ExtraBold, None)
|
|
97
|
+
ExtraLight = property(get_ExtraLight, None)
|
|
98
|
+
Light = property(get_Light, None)
|
|
99
|
+
Medium = property(get_Medium, None)
|
|
100
|
+
Normal = property(get_Normal, None)
|
|
101
|
+
SemiBold = property(get_SemiBold, None)
|
|
102
|
+
SemiLight = property(get_SemiLight, None)
|
|
103
|
+
Thin = property(get_Thin, None)
|
|
104
|
+
class ITextCharacterFormat(ComPtr):
|
|
105
|
+
extends: IInspectable
|
|
106
|
+
_classid_ = 'Microsoft.UI.Text.ITextCharacterFormat'
|
|
107
|
+
_iid_ = Guid('{f5710050-98e5-5788-b1e3-32191eebf94d}')
|
|
108
|
+
@winrt_commethod(6)
|
|
109
|
+
def get_AllCaps(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
110
|
+
@winrt_commethod(7)
|
|
111
|
+
def put_AllCaps(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
112
|
+
@winrt_commethod(8)
|
|
113
|
+
def get_BackgroundColor(self) -> win32more.Windows.UI.Color: ...
|
|
114
|
+
@winrt_commethod(9)
|
|
115
|
+
def put_BackgroundColor(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
116
|
+
@winrt_commethod(10)
|
|
117
|
+
def get_Bold(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
118
|
+
@winrt_commethod(11)
|
|
119
|
+
def put_Bold(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
120
|
+
@winrt_commethod(12)
|
|
121
|
+
def get_FontStretch(self) -> win32more.Windows.UI.Text.FontStretch: ...
|
|
122
|
+
@winrt_commethod(13)
|
|
123
|
+
def put_FontStretch(self, value: win32more.Windows.UI.Text.FontStretch) -> Void: ...
|
|
124
|
+
@winrt_commethod(14)
|
|
125
|
+
def get_FontStyle(self) -> win32more.Windows.UI.Text.FontStyle: ...
|
|
126
|
+
@winrt_commethod(15)
|
|
127
|
+
def put_FontStyle(self, value: win32more.Windows.UI.Text.FontStyle) -> Void: ...
|
|
128
|
+
@winrt_commethod(16)
|
|
129
|
+
def get_ForegroundColor(self) -> win32more.Windows.UI.Color: ...
|
|
130
|
+
@winrt_commethod(17)
|
|
131
|
+
def put_ForegroundColor(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
132
|
+
@winrt_commethod(18)
|
|
133
|
+
def get_Hidden(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
134
|
+
@winrt_commethod(19)
|
|
135
|
+
def put_Hidden(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
136
|
+
@winrt_commethod(20)
|
|
137
|
+
def get_Italic(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
138
|
+
@winrt_commethod(21)
|
|
139
|
+
def put_Italic(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
140
|
+
@winrt_commethod(22)
|
|
141
|
+
def get_Kerning(self) -> Single: ...
|
|
142
|
+
@winrt_commethod(23)
|
|
143
|
+
def put_Kerning(self, value: Single) -> Void: ...
|
|
144
|
+
@winrt_commethod(24)
|
|
145
|
+
def get_LanguageTag(self) -> WinRT_String: ...
|
|
146
|
+
@winrt_commethod(25)
|
|
147
|
+
def put_LanguageTag(self, value: WinRT_String) -> Void: ...
|
|
148
|
+
@winrt_commethod(26)
|
|
149
|
+
def get_LinkType(self) -> win32more.Microsoft.UI.Text.LinkType: ...
|
|
150
|
+
@winrt_commethod(27)
|
|
151
|
+
def get_Name(self) -> WinRT_String: ...
|
|
152
|
+
@winrt_commethod(28)
|
|
153
|
+
def put_Name(self, value: WinRT_String) -> Void: ...
|
|
154
|
+
@winrt_commethod(29)
|
|
155
|
+
def get_Outline(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
156
|
+
@winrt_commethod(30)
|
|
157
|
+
def put_Outline(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
158
|
+
@winrt_commethod(31)
|
|
159
|
+
def get_Position(self) -> Single: ...
|
|
160
|
+
@winrt_commethod(32)
|
|
161
|
+
def put_Position(self, value: Single) -> Void: ...
|
|
162
|
+
@winrt_commethod(33)
|
|
163
|
+
def get_ProtectedText(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
164
|
+
@winrt_commethod(34)
|
|
165
|
+
def put_ProtectedText(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
166
|
+
@winrt_commethod(35)
|
|
167
|
+
def get_Size(self) -> Single: ...
|
|
168
|
+
@winrt_commethod(36)
|
|
169
|
+
def put_Size(self, value: Single) -> Void: ...
|
|
170
|
+
@winrt_commethod(37)
|
|
171
|
+
def get_SmallCaps(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
172
|
+
@winrt_commethod(38)
|
|
173
|
+
def put_SmallCaps(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
174
|
+
@winrt_commethod(39)
|
|
175
|
+
def get_Spacing(self) -> Single: ...
|
|
176
|
+
@winrt_commethod(40)
|
|
177
|
+
def put_Spacing(self, value: Single) -> Void: ...
|
|
178
|
+
@winrt_commethod(41)
|
|
179
|
+
def get_Strikethrough(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
180
|
+
@winrt_commethod(42)
|
|
181
|
+
def put_Strikethrough(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
182
|
+
@winrt_commethod(43)
|
|
183
|
+
def get_Subscript(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
184
|
+
@winrt_commethod(44)
|
|
185
|
+
def put_Subscript(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
186
|
+
@winrt_commethod(45)
|
|
187
|
+
def get_Superscript(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
188
|
+
@winrt_commethod(46)
|
|
189
|
+
def put_Superscript(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
190
|
+
@winrt_commethod(47)
|
|
191
|
+
def get_TextScript(self) -> win32more.Microsoft.UI.Text.TextScript: ...
|
|
192
|
+
@winrt_commethod(48)
|
|
193
|
+
def put_TextScript(self, value: win32more.Microsoft.UI.Text.TextScript) -> Void: ...
|
|
194
|
+
@winrt_commethod(49)
|
|
195
|
+
def get_Underline(self) -> win32more.Microsoft.UI.Text.UnderlineType: ...
|
|
196
|
+
@winrt_commethod(50)
|
|
197
|
+
def put_Underline(self, value: win32more.Microsoft.UI.Text.UnderlineType) -> Void: ...
|
|
198
|
+
@winrt_commethod(51)
|
|
199
|
+
def get_Weight(self) -> Int32: ...
|
|
200
|
+
@winrt_commethod(52)
|
|
201
|
+
def put_Weight(self, value: Int32) -> Void: ...
|
|
202
|
+
@winrt_commethod(53)
|
|
203
|
+
def SetClone(self, value: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Void: ...
|
|
204
|
+
@winrt_commethod(54)
|
|
205
|
+
def GetClone(self) -> win32more.Microsoft.UI.Text.ITextCharacterFormat: ...
|
|
206
|
+
@winrt_commethod(55)
|
|
207
|
+
def IsEqual(self, format: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Boolean: ...
|
|
208
|
+
AllCaps = property(get_AllCaps, put_AllCaps)
|
|
209
|
+
BackgroundColor = property(get_BackgroundColor, put_BackgroundColor)
|
|
210
|
+
Bold = property(get_Bold, put_Bold)
|
|
211
|
+
FontStretch = property(get_FontStretch, put_FontStretch)
|
|
212
|
+
FontStyle = property(get_FontStyle, put_FontStyle)
|
|
213
|
+
ForegroundColor = property(get_ForegroundColor, put_ForegroundColor)
|
|
214
|
+
Hidden = property(get_Hidden, put_Hidden)
|
|
215
|
+
Italic = property(get_Italic, put_Italic)
|
|
216
|
+
Kerning = property(get_Kerning, put_Kerning)
|
|
217
|
+
LanguageTag = property(get_LanguageTag, put_LanguageTag)
|
|
218
|
+
LinkType = property(get_LinkType, None)
|
|
219
|
+
Name = property(get_Name, put_Name)
|
|
220
|
+
Outline = property(get_Outline, put_Outline)
|
|
221
|
+
Position = property(get_Position, put_Position)
|
|
222
|
+
ProtectedText = property(get_ProtectedText, put_ProtectedText)
|
|
223
|
+
Size = property(get_Size, put_Size)
|
|
224
|
+
SmallCaps = property(get_SmallCaps, put_SmallCaps)
|
|
225
|
+
Spacing = property(get_Spacing, put_Spacing)
|
|
226
|
+
Strikethrough = property(get_Strikethrough, put_Strikethrough)
|
|
227
|
+
Subscript = property(get_Subscript, put_Subscript)
|
|
228
|
+
Superscript = property(get_Superscript, put_Superscript)
|
|
229
|
+
TextScript = property(get_TextScript, put_TextScript)
|
|
230
|
+
Underline = property(get_Underline, put_Underline)
|
|
231
|
+
Weight = property(get_Weight, put_Weight)
|
|
232
|
+
class ITextConstantsStatics(ComPtr):
|
|
233
|
+
extends: IInspectable
|
|
234
|
+
_classid_ = 'Microsoft.UI.Text.ITextConstantsStatics'
|
|
235
|
+
_iid_ = Guid('{cd353b3c-af63-5cfb-918c-0f9c8931a161}')
|
|
236
|
+
@winrt_commethod(6)
|
|
237
|
+
def get_AutoColor(self) -> win32more.Windows.UI.Color: ...
|
|
238
|
+
@winrt_commethod(7)
|
|
239
|
+
def get_MinUnitCount(self) -> Int32: ...
|
|
240
|
+
@winrt_commethod(8)
|
|
241
|
+
def get_MaxUnitCount(self) -> Int32: ...
|
|
242
|
+
@winrt_commethod(9)
|
|
243
|
+
def get_UndefinedColor(self) -> win32more.Windows.UI.Color: ...
|
|
244
|
+
@winrt_commethod(10)
|
|
245
|
+
def get_UndefinedFloatValue(self) -> Single: ...
|
|
246
|
+
@winrt_commethod(11)
|
|
247
|
+
def get_UndefinedInt32Value(self) -> Int32: ...
|
|
248
|
+
@winrt_commethod(12)
|
|
249
|
+
def get_UndefinedFontStretch(self) -> win32more.Windows.UI.Text.FontStretch: ...
|
|
250
|
+
@winrt_commethod(13)
|
|
251
|
+
def get_UndefinedFontStyle(self) -> win32more.Windows.UI.Text.FontStyle: ...
|
|
252
|
+
AutoColor = property(get_AutoColor, None)
|
|
253
|
+
MaxUnitCount = property(get_MaxUnitCount, None)
|
|
254
|
+
MinUnitCount = property(get_MinUnitCount, None)
|
|
255
|
+
UndefinedColor = property(get_UndefinedColor, None)
|
|
256
|
+
UndefinedFloatValue = property(get_UndefinedFloatValue, None)
|
|
257
|
+
UndefinedFontStretch = property(get_UndefinedFontStretch, None)
|
|
258
|
+
UndefinedFontStyle = property(get_UndefinedFontStyle, None)
|
|
259
|
+
UndefinedInt32Value = property(get_UndefinedInt32Value, None)
|
|
260
|
+
class ITextDocument(ComPtr):
|
|
261
|
+
extends: IInspectable
|
|
262
|
+
_classid_ = 'Microsoft.UI.Text.ITextDocument'
|
|
263
|
+
_iid_ = Guid('{1149d57d-86a6-59dd-88d9-196f27bc5c85}')
|
|
264
|
+
@winrt_commethod(6)
|
|
265
|
+
def get_CaretType(self) -> win32more.Microsoft.UI.Text.CaretType: ...
|
|
266
|
+
@winrt_commethod(7)
|
|
267
|
+
def put_CaretType(self, value: win32more.Microsoft.UI.Text.CaretType) -> Void: ...
|
|
268
|
+
@winrt_commethod(8)
|
|
269
|
+
def get_DefaultTabStop(self) -> Single: ...
|
|
270
|
+
@winrt_commethod(9)
|
|
271
|
+
def put_DefaultTabStop(self, value: Single) -> Void: ...
|
|
272
|
+
@winrt_commethod(10)
|
|
273
|
+
def get_Selection(self) -> win32more.Microsoft.UI.Text.ITextSelection: ...
|
|
274
|
+
@winrt_commethod(11)
|
|
275
|
+
def get_UndoLimit(self) -> UInt32: ...
|
|
276
|
+
@winrt_commethod(12)
|
|
277
|
+
def put_UndoLimit(self, value: UInt32) -> Void: ...
|
|
278
|
+
@winrt_commethod(13)
|
|
279
|
+
def CanCopy(self) -> Boolean: ...
|
|
280
|
+
@winrt_commethod(14)
|
|
281
|
+
def CanPaste(self) -> Boolean: ...
|
|
282
|
+
@winrt_commethod(15)
|
|
283
|
+
def CanRedo(self) -> Boolean: ...
|
|
284
|
+
@winrt_commethod(16)
|
|
285
|
+
def CanUndo(self) -> Boolean: ...
|
|
286
|
+
@winrt_commethod(17)
|
|
287
|
+
def ApplyDisplayUpdates(self) -> Int32: ...
|
|
288
|
+
@winrt_commethod(18)
|
|
289
|
+
def BatchDisplayUpdates(self) -> Int32: ...
|
|
290
|
+
@winrt_commethod(19)
|
|
291
|
+
def BeginUndoGroup(self) -> Void: ...
|
|
292
|
+
@winrt_commethod(20)
|
|
293
|
+
def EndUndoGroup(self) -> Void: ...
|
|
294
|
+
@winrt_commethod(21)
|
|
295
|
+
def GetDefaultCharacterFormat(self) -> win32more.Microsoft.UI.Text.ITextCharacterFormat: ...
|
|
296
|
+
@winrt_commethod(22)
|
|
297
|
+
def GetDefaultParagraphFormat(self) -> win32more.Microsoft.UI.Text.ITextParagraphFormat: ...
|
|
298
|
+
@winrt_commethod(23)
|
|
299
|
+
def GetRange(self, startPosition: Int32, endPosition: Int32) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
300
|
+
@winrt_commethod(24)
|
|
301
|
+
def GetRangeFromPoint(self, point: win32more.Windows.Foundation.Point, options: win32more.Microsoft.UI.Text.PointOptions) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
302
|
+
@winrt_commethod(25)
|
|
303
|
+
def GetText(self, options: win32more.Microsoft.UI.Text.TextGetOptions, value: POINTER(WinRT_String)) -> Void: ...
|
|
304
|
+
@winrt_commethod(26)
|
|
305
|
+
def LoadFromStream(self, options: win32more.Microsoft.UI.Text.TextSetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
306
|
+
@winrt_commethod(27)
|
|
307
|
+
def Redo(self) -> Void: ...
|
|
308
|
+
@winrt_commethod(28)
|
|
309
|
+
def SaveToStream(self, options: win32more.Microsoft.UI.Text.TextGetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
310
|
+
@winrt_commethod(29)
|
|
311
|
+
def SetDefaultCharacterFormat(self, value: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Void: ...
|
|
312
|
+
@winrt_commethod(30)
|
|
313
|
+
def SetDefaultParagraphFormat(self, value: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Void: ...
|
|
314
|
+
@winrt_commethod(31)
|
|
315
|
+
def SetText(self, options: win32more.Microsoft.UI.Text.TextSetOptions, value: WinRT_String) -> Void: ...
|
|
316
|
+
@winrt_commethod(32)
|
|
317
|
+
def Undo(self) -> Void: ...
|
|
318
|
+
@winrt_commethod(33)
|
|
319
|
+
def get_AlignmentIncludesTrailingWhitespace(self) -> Boolean: ...
|
|
320
|
+
@winrt_commethod(34)
|
|
321
|
+
def put_AlignmentIncludesTrailingWhitespace(self, value: Boolean) -> Void: ...
|
|
322
|
+
@winrt_commethod(35)
|
|
323
|
+
def get_IgnoreTrailingCharacterSpacing(self) -> Boolean: ...
|
|
324
|
+
@winrt_commethod(36)
|
|
325
|
+
def put_IgnoreTrailingCharacterSpacing(self, value: Boolean) -> Void: ...
|
|
326
|
+
@winrt_commethod(37)
|
|
327
|
+
def ClearUndoRedoHistory(self) -> Void: ...
|
|
328
|
+
AlignmentIncludesTrailingWhitespace = property(get_AlignmentIncludesTrailingWhitespace, put_AlignmentIncludesTrailingWhitespace)
|
|
329
|
+
CaretType = property(get_CaretType, put_CaretType)
|
|
330
|
+
DefaultTabStop = property(get_DefaultTabStop, put_DefaultTabStop)
|
|
331
|
+
IgnoreTrailingCharacterSpacing = property(get_IgnoreTrailingCharacterSpacing, put_IgnoreTrailingCharacterSpacing)
|
|
332
|
+
Selection = property(get_Selection, None)
|
|
333
|
+
UndoLimit = property(get_UndoLimit, put_UndoLimit)
|
|
334
|
+
class ITextParagraphFormat(ComPtr):
|
|
335
|
+
extends: IInspectable
|
|
336
|
+
_classid_ = 'Microsoft.UI.Text.ITextParagraphFormat'
|
|
337
|
+
_iid_ = Guid('{219b6cdf-0d0b-5701-b8a1-6c906b3ebbe1}')
|
|
338
|
+
@winrt_commethod(6)
|
|
339
|
+
def get_Alignment(self) -> win32more.Microsoft.UI.Text.ParagraphAlignment: ...
|
|
340
|
+
@winrt_commethod(7)
|
|
341
|
+
def put_Alignment(self, value: win32more.Microsoft.UI.Text.ParagraphAlignment) -> Void: ...
|
|
342
|
+
@winrt_commethod(8)
|
|
343
|
+
def get_FirstLineIndent(self) -> Single: ...
|
|
344
|
+
@winrt_commethod(9)
|
|
345
|
+
def get_KeepTogether(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
346
|
+
@winrt_commethod(10)
|
|
347
|
+
def put_KeepTogether(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
348
|
+
@winrt_commethod(11)
|
|
349
|
+
def get_KeepWithNext(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
350
|
+
@winrt_commethod(12)
|
|
351
|
+
def put_KeepWithNext(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
352
|
+
@winrt_commethod(13)
|
|
353
|
+
def get_LeftIndent(self) -> Single: ...
|
|
354
|
+
@winrt_commethod(14)
|
|
355
|
+
def get_LineSpacing(self) -> Single: ...
|
|
356
|
+
@winrt_commethod(15)
|
|
357
|
+
def get_LineSpacingRule(self) -> win32more.Microsoft.UI.Text.LineSpacingRule: ...
|
|
358
|
+
@winrt_commethod(16)
|
|
359
|
+
def get_ListAlignment(self) -> win32more.Microsoft.UI.Text.MarkerAlignment: ...
|
|
360
|
+
@winrt_commethod(17)
|
|
361
|
+
def put_ListAlignment(self, value: win32more.Microsoft.UI.Text.MarkerAlignment) -> Void: ...
|
|
362
|
+
@winrt_commethod(18)
|
|
363
|
+
def get_ListLevelIndex(self) -> Int32: ...
|
|
364
|
+
@winrt_commethod(19)
|
|
365
|
+
def put_ListLevelIndex(self, value: Int32) -> Void: ...
|
|
366
|
+
@winrt_commethod(20)
|
|
367
|
+
def get_ListStart(self) -> Int32: ...
|
|
368
|
+
@winrt_commethod(21)
|
|
369
|
+
def put_ListStart(self, value: Int32) -> Void: ...
|
|
370
|
+
@winrt_commethod(22)
|
|
371
|
+
def get_ListStyle(self) -> win32more.Microsoft.UI.Text.MarkerStyle: ...
|
|
372
|
+
@winrt_commethod(23)
|
|
373
|
+
def put_ListStyle(self, value: win32more.Microsoft.UI.Text.MarkerStyle) -> Void: ...
|
|
374
|
+
@winrt_commethod(24)
|
|
375
|
+
def get_ListTab(self) -> Single: ...
|
|
376
|
+
@winrt_commethod(25)
|
|
377
|
+
def put_ListTab(self, value: Single) -> Void: ...
|
|
378
|
+
@winrt_commethod(26)
|
|
379
|
+
def get_ListType(self) -> win32more.Microsoft.UI.Text.MarkerType: ...
|
|
380
|
+
@winrt_commethod(27)
|
|
381
|
+
def put_ListType(self, value: win32more.Microsoft.UI.Text.MarkerType) -> Void: ...
|
|
382
|
+
@winrt_commethod(28)
|
|
383
|
+
def get_NoLineNumber(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
384
|
+
@winrt_commethod(29)
|
|
385
|
+
def put_NoLineNumber(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
386
|
+
@winrt_commethod(30)
|
|
387
|
+
def get_PageBreakBefore(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
388
|
+
@winrt_commethod(31)
|
|
389
|
+
def put_PageBreakBefore(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
390
|
+
@winrt_commethod(32)
|
|
391
|
+
def get_RightIndent(self) -> Single: ...
|
|
392
|
+
@winrt_commethod(33)
|
|
393
|
+
def put_RightIndent(self, value: Single) -> Void: ...
|
|
394
|
+
@winrt_commethod(34)
|
|
395
|
+
def get_RightToLeft(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
396
|
+
@winrt_commethod(35)
|
|
397
|
+
def put_RightToLeft(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
398
|
+
@winrt_commethod(36)
|
|
399
|
+
def get_Style(self) -> win32more.Microsoft.UI.Text.ParagraphStyle: ...
|
|
400
|
+
@winrt_commethod(37)
|
|
401
|
+
def put_Style(self, value: win32more.Microsoft.UI.Text.ParagraphStyle) -> Void: ...
|
|
402
|
+
@winrt_commethod(38)
|
|
403
|
+
def get_SpaceAfter(self) -> Single: ...
|
|
404
|
+
@winrt_commethod(39)
|
|
405
|
+
def put_SpaceAfter(self, value: Single) -> Void: ...
|
|
406
|
+
@winrt_commethod(40)
|
|
407
|
+
def get_SpaceBefore(self) -> Single: ...
|
|
408
|
+
@winrt_commethod(41)
|
|
409
|
+
def put_SpaceBefore(self, value: Single) -> Void: ...
|
|
410
|
+
@winrt_commethod(42)
|
|
411
|
+
def get_WidowControl(self) -> win32more.Microsoft.UI.Text.FormatEffect: ...
|
|
412
|
+
@winrt_commethod(43)
|
|
413
|
+
def put_WidowControl(self, value: win32more.Microsoft.UI.Text.FormatEffect) -> Void: ...
|
|
414
|
+
@winrt_commethod(44)
|
|
415
|
+
def get_TabCount(self) -> Int32: ...
|
|
416
|
+
@winrt_commethod(45)
|
|
417
|
+
def AddTab(self, position: Single, align: win32more.Microsoft.UI.Text.TabAlignment, leader: win32more.Microsoft.UI.Text.TabLeader) -> Void: ...
|
|
418
|
+
@winrt_commethod(46)
|
|
419
|
+
def ClearAllTabs(self) -> Void: ...
|
|
420
|
+
@winrt_commethod(47)
|
|
421
|
+
def DeleteTab(self, position: Single) -> Void: ...
|
|
422
|
+
@winrt_commethod(48)
|
|
423
|
+
def GetClone(self) -> win32more.Microsoft.UI.Text.ITextParagraphFormat: ...
|
|
424
|
+
@winrt_commethod(49)
|
|
425
|
+
def GetTab(self, index: Int32, position: POINTER(Single), align: POINTER(win32more.Microsoft.UI.Text.TabAlignment), leader: POINTER(win32more.Microsoft.UI.Text.TabLeader)) -> Void: ...
|
|
426
|
+
@winrt_commethod(50)
|
|
427
|
+
def IsEqual(self, format: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Boolean: ...
|
|
428
|
+
@winrt_commethod(51)
|
|
429
|
+
def SetClone(self, format: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Void: ...
|
|
430
|
+
@winrt_commethod(52)
|
|
431
|
+
def SetIndents(self, start: Single, left: Single, right: Single) -> Void: ...
|
|
432
|
+
@winrt_commethod(53)
|
|
433
|
+
def SetLineSpacing(self, rule: win32more.Microsoft.UI.Text.LineSpacingRule, spacing: Single) -> Void: ...
|
|
434
|
+
Alignment = property(get_Alignment, put_Alignment)
|
|
435
|
+
FirstLineIndent = property(get_FirstLineIndent, None)
|
|
436
|
+
KeepTogether = property(get_KeepTogether, put_KeepTogether)
|
|
437
|
+
KeepWithNext = property(get_KeepWithNext, put_KeepWithNext)
|
|
438
|
+
LeftIndent = property(get_LeftIndent, None)
|
|
439
|
+
LineSpacing = property(get_LineSpacing, None)
|
|
440
|
+
LineSpacingRule = property(get_LineSpacingRule, None)
|
|
441
|
+
ListAlignment = property(get_ListAlignment, put_ListAlignment)
|
|
442
|
+
ListLevelIndex = property(get_ListLevelIndex, put_ListLevelIndex)
|
|
443
|
+
ListStart = property(get_ListStart, put_ListStart)
|
|
444
|
+
ListStyle = property(get_ListStyle, put_ListStyle)
|
|
445
|
+
ListTab = property(get_ListTab, put_ListTab)
|
|
446
|
+
ListType = property(get_ListType, put_ListType)
|
|
447
|
+
NoLineNumber = property(get_NoLineNumber, put_NoLineNumber)
|
|
448
|
+
PageBreakBefore = property(get_PageBreakBefore, put_PageBreakBefore)
|
|
449
|
+
RightIndent = property(get_RightIndent, put_RightIndent)
|
|
450
|
+
RightToLeft = property(get_RightToLeft, put_RightToLeft)
|
|
451
|
+
SpaceAfter = property(get_SpaceAfter, put_SpaceAfter)
|
|
452
|
+
SpaceBefore = property(get_SpaceBefore, put_SpaceBefore)
|
|
453
|
+
Style = property(get_Style, put_Style)
|
|
454
|
+
TabCount = property(get_TabCount, None)
|
|
455
|
+
WidowControl = property(get_WidowControl, put_WidowControl)
|
|
456
|
+
class ITextRange(ComPtr):
|
|
457
|
+
extends: IInspectable
|
|
458
|
+
_classid_ = 'Microsoft.UI.Text.ITextRange'
|
|
459
|
+
_iid_ = Guid('{06d4abcf-0c06-5d12-a743-85537efd09ea}')
|
|
460
|
+
@winrt_commethod(6)
|
|
461
|
+
def get_Character(self) -> Char: ...
|
|
462
|
+
@winrt_commethod(7)
|
|
463
|
+
def put_Character(self, value: Char) -> Void: ...
|
|
464
|
+
@winrt_commethod(8)
|
|
465
|
+
def get_CharacterFormat(self) -> win32more.Microsoft.UI.Text.ITextCharacterFormat: ...
|
|
466
|
+
@winrt_commethod(9)
|
|
467
|
+
def put_CharacterFormat(self, value: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Void: ...
|
|
468
|
+
@winrt_commethod(10)
|
|
469
|
+
def get_FormattedText(self) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
470
|
+
@winrt_commethod(11)
|
|
471
|
+
def put_FormattedText(self, value: win32more.Microsoft.UI.Text.ITextRange) -> Void: ...
|
|
472
|
+
@winrt_commethod(12)
|
|
473
|
+
def get_EndPosition(self) -> Int32: ...
|
|
474
|
+
@winrt_commethod(13)
|
|
475
|
+
def put_EndPosition(self, value: Int32) -> Void: ...
|
|
476
|
+
@winrt_commethod(14)
|
|
477
|
+
def get_Gravity(self) -> win32more.Microsoft.UI.Text.RangeGravity: ...
|
|
478
|
+
@winrt_commethod(15)
|
|
479
|
+
def put_Gravity(self, value: win32more.Microsoft.UI.Text.RangeGravity) -> Void: ...
|
|
480
|
+
@winrt_commethod(16)
|
|
481
|
+
def get_Length(self) -> Int32: ...
|
|
482
|
+
@winrt_commethod(17)
|
|
483
|
+
def get_Link(self) -> WinRT_String: ...
|
|
484
|
+
@winrt_commethod(18)
|
|
485
|
+
def put_Link(self, value: WinRT_String) -> Void: ...
|
|
486
|
+
@winrt_commethod(19)
|
|
487
|
+
def get_ParagraphFormat(self) -> win32more.Microsoft.UI.Text.ITextParagraphFormat: ...
|
|
488
|
+
@winrt_commethod(20)
|
|
489
|
+
def put_ParagraphFormat(self, value: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Void: ...
|
|
490
|
+
@winrt_commethod(21)
|
|
491
|
+
def get_StartPosition(self) -> Int32: ...
|
|
492
|
+
@winrt_commethod(22)
|
|
493
|
+
def put_StartPosition(self, value: Int32) -> Void: ...
|
|
494
|
+
@winrt_commethod(23)
|
|
495
|
+
def get_StoryLength(self) -> Int32: ...
|
|
496
|
+
@winrt_commethod(24)
|
|
497
|
+
def get_Text(self) -> WinRT_String: ...
|
|
498
|
+
@winrt_commethod(25)
|
|
499
|
+
def put_Text(self, value: WinRT_String) -> Void: ...
|
|
500
|
+
@winrt_commethod(26)
|
|
501
|
+
def CanPaste(self, format: Int32) -> Boolean: ...
|
|
502
|
+
@winrt_commethod(27)
|
|
503
|
+
def ChangeCase(self, value: win32more.Microsoft.UI.Text.LetterCase) -> Void: ...
|
|
504
|
+
@winrt_commethod(28)
|
|
505
|
+
def Collapse(self, value: Boolean) -> Void: ...
|
|
506
|
+
@winrt_commethod(29)
|
|
507
|
+
def Copy(self) -> Void: ...
|
|
508
|
+
@winrt_commethod(30)
|
|
509
|
+
def Cut(self) -> Void: ...
|
|
510
|
+
@winrt_commethod(31)
|
|
511
|
+
def Delete(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
512
|
+
@winrt_commethod(32)
|
|
513
|
+
def EndOf(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
514
|
+
@winrt_commethod(33)
|
|
515
|
+
def Expand(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit) -> Int32: ...
|
|
516
|
+
@winrt_commethod(34)
|
|
517
|
+
def FindText(self, value: WinRT_String, scanLength: Int32, options: win32more.Microsoft.UI.Text.FindOptions) -> Int32: ...
|
|
518
|
+
@winrt_commethod(35)
|
|
519
|
+
def GetCharacterUtf32(self, value: POINTER(UInt32), offset: Int32) -> Void: ...
|
|
520
|
+
@winrt_commethod(36)
|
|
521
|
+
def GetClone(self) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
522
|
+
@winrt_commethod(37)
|
|
523
|
+
def GetIndex(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit) -> Int32: ...
|
|
524
|
+
@winrt_commethod(38)
|
|
525
|
+
def GetPoint(self, horizontalAlign: win32more.Microsoft.UI.Text.HorizontalCharacterAlignment, verticalAlign: win32more.Microsoft.UI.Text.VerticalCharacterAlignment, options: win32more.Microsoft.UI.Text.PointOptions, point: POINTER(win32more.Windows.Foundation.Point)) -> Void: ...
|
|
526
|
+
@winrt_commethod(39)
|
|
527
|
+
def GetRect(self, options: win32more.Microsoft.UI.Text.PointOptions, rect: POINTER(win32more.Windows.Foundation.Rect), hit: POINTER(Int32)) -> Void: ...
|
|
528
|
+
@winrt_commethod(40)
|
|
529
|
+
def GetText(self, options: win32more.Microsoft.UI.Text.TextGetOptions, value: POINTER(WinRT_String)) -> Void: ...
|
|
530
|
+
@winrt_commethod(41)
|
|
531
|
+
def GetTextViaStream(self, options: win32more.Microsoft.UI.Text.TextGetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
532
|
+
@winrt_commethod(42)
|
|
533
|
+
def InRange(self, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
534
|
+
@winrt_commethod(43)
|
|
535
|
+
def InsertImage(self, width: Int32, height: Int32, ascent: Int32, verticalAlign: win32more.Microsoft.UI.Text.VerticalCharacterAlignment, alternateText: WinRT_String, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
536
|
+
@winrt_commethod(44)
|
|
537
|
+
def InStory(self, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
538
|
+
@winrt_commethod(45)
|
|
539
|
+
def IsEqual(self, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
540
|
+
@winrt_commethod(46)
|
|
541
|
+
def Move(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
542
|
+
@winrt_commethod(47)
|
|
543
|
+
def MoveEnd(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
544
|
+
@winrt_commethod(48)
|
|
545
|
+
def MoveStart(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
546
|
+
@winrt_commethod(49)
|
|
547
|
+
def Paste(self, format: Int32) -> Void: ...
|
|
548
|
+
@winrt_commethod(50)
|
|
549
|
+
def ScrollIntoView(self, value: win32more.Microsoft.UI.Text.PointOptions) -> Void: ...
|
|
550
|
+
@winrt_commethod(51)
|
|
551
|
+
def MatchSelection(self) -> Void: ...
|
|
552
|
+
@winrt_commethod(52)
|
|
553
|
+
def SetIndex(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, index: Int32, extend: Boolean) -> Void: ...
|
|
554
|
+
@winrt_commethod(53)
|
|
555
|
+
def SetPoint(self, point: win32more.Windows.Foundation.Point, options: win32more.Microsoft.UI.Text.PointOptions, extend: Boolean) -> Void: ...
|
|
556
|
+
@winrt_commethod(54)
|
|
557
|
+
def SetRange(self, startPosition: Int32, endPosition: Int32) -> Void: ...
|
|
558
|
+
@winrt_commethod(55)
|
|
559
|
+
def SetText(self, options: win32more.Microsoft.UI.Text.TextSetOptions, value: WinRT_String) -> Void: ...
|
|
560
|
+
@winrt_commethod(56)
|
|
561
|
+
def SetTextViaStream(self, options: win32more.Microsoft.UI.Text.TextSetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
562
|
+
@winrt_commethod(57)
|
|
563
|
+
def StartOf(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
564
|
+
Character = property(get_Character, put_Character)
|
|
565
|
+
CharacterFormat = property(get_CharacterFormat, put_CharacterFormat)
|
|
566
|
+
EndPosition = property(get_EndPosition, put_EndPosition)
|
|
567
|
+
FormattedText = property(get_FormattedText, put_FormattedText)
|
|
568
|
+
Gravity = property(get_Gravity, put_Gravity)
|
|
569
|
+
Length = property(get_Length, None)
|
|
570
|
+
Link = property(get_Link, put_Link)
|
|
571
|
+
ParagraphFormat = property(get_ParagraphFormat, put_ParagraphFormat)
|
|
572
|
+
StartPosition = property(get_StartPosition, put_StartPosition)
|
|
573
|
+
StoryLength = property(get_StoryLength, None)
|
|
574
|
+
Text = property(get_Text, put_Text)
|
|
575
|
+
class ITextSelection(ComPtr):
|
|
576
|
+
extends: IInspectable
|
|
577
|
+
_classid_ = 'Microsoft.UI.Text.ITextSelection'
|
|
578
|
+
_iid_ = Guid('{8f5e6cb1-2b04-589f-bd24-54e5cd8dd399}')
|
|
579
|
+
@winrt_commethod(6)
|
|
580
|
+
def get_Options(self) -> win32more.Microsoft.UI.Text.SelectionOptions: ...
|
|
581
|
+
@winrt_commethod(7)
|
|
582
|
+
def put_Options(self, value: win32more.Microsoft.UI.Text.SelectionOptions) -> Void: ...
|
|
583
|
+
@winrt_commethod(8)
|
|
584
|
+
def get_Type(self) -> win32more.Microsoft.UI.Text.SelectionType: ...
|
|
585
|
+
@winrt_commethod(9)
|
|
586
|
+
def EndKey(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
587
|
+
@winrt_commethod(10)
|
|
588
|
+
def HomeKey(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
589
|
+
@winrt_commethod(11)
|
|
590
|
+
def MoveDown(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32, extend: Boolean) -> Int32: ...
|
|
591
|
+
@winrt_commethod(12)
|
|
592
|
+
def MoveLeft(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32, extend: Boolean) -> Int32: ...
|
|
593
|
+
@winrt_commethod(13)
|
|
594
|
+
def MoveRight(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32, extend: Boolean) -> Int32: ...
|
|
595
|
+
@winrt_commethod(14)
|
|
596
|
+
def MoveUp(self, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32, extend: Boolean) -> Int32: ...
|
|
597
|
+
@winrt_commethod(15)
|
|
598
|
+
def TypeText(self, value: WinRT_String) -> Void: ...
|
|
599
|
+
Options = property(get_Options, put_Options)
|
|
600
|
+
Type = property(get_Type, None)
|
|
601
|
+
class LetterCase(Enum, Int32):
|
|
602
|
+
Lower = 0
|
|
603
|
+
Upper = 1
|
|
604
|
+
class LineSpacingRule(Enum, Int32):
|
|
605
|
+
Undefined = 0
|
|
606
|
+
Single = 1
|
|
607
|
+
OneAndHalf = 2
|
|
608
|
+
Double = 3
|
|
609
|
+
AtLeast = 4
|
|
610
|
+
Exactly = 5
|
|
611
|
+
Multiple = 6
|
|
612
|
+
Percent = 7
|
|
613
|
+
class LinkType(Enum, Int32):
|
|
614
|
+
Undefined = 0
|
|
615
|
+
NotALink = 1
|
|
616
|
+
ClientLink = 2
|
|
617
|
+
FriendlyLinkName = 3
|
|
618
|
+
FriendlyLinkAddress = 4
|
|
619
|
+
AutoLink = 5
|
|
620
|
+
AutoLinkEmail = 6
|
|
621
|
+
AutoLinkPhone = 7
|
|
622
|
+
AutoLinkPath = 8
|
|
623
|
+
class MarkerAlignment(Enum, Int32):
|
|
624
|
+
Undefined = 0
|
|
625
|
+
Left = 1
|
|
626
|
+
Center = 2
|
|
627
|
+
Right = 3
|
|
628
|
+
class MarkerStyle(Enum, Int32):
|
|
629
|
+
Undefined = 0
|
|
630
|
+
Parenthesis = 1
|
|
631
|
+
Parentheses = 2
|
|
632
|
+
Period = 3
|
|
633
|
+
Plain = 4
|
|
634
|
+
Minus = 5
|
|
635
|
+
NoNumber = 6
|
|
636
|
+
class MarkerType(Enum, Int32):
|
|
637
|
+
Undefined = 0
|
|
638
|
+
None_ = 1
|
|
639
|
+
Bullet = 2
|
|
640
|
+
Arabic = 3
|
|
641
|
+
LowercaseEnglishLetter = 4
|
|
642
|
+
UppercaseEnglishLetter = 5
|
|
643
|
+
LowercaseRoman = 6
|
|
644
|
+
UppercaseRoman = 7
|
|
645
|
+
UnicodeSequence = 8
|
|
646
|
+
CircledNumber = 9
|
|
647
|
+
BlackCircleWingding = 10
|
|
648
|
+
WhiteCircleWingding = 11
|
|
649
|
+
ArabicWide = 12
|
|
650
|
+
SimplifiedChinese = 13
|
|
651
|
+
TraditionalChinese = 14
|
|
652
|
+
JapanSimplifiedChinese = 15
|
|
653
|
+
JapanKorea = 16
|
|
654
|
+
ArabicDictionary = 17
|
|
655
|
+
ArabicAbjad = 18
|
|
656
|
+
Hebrew = 19
|
|
657
|
+
ThaiAlphabetic = 20
|
|
658
|
+
ThaiNumeric = 21
|
|
659
|
+
DevanagariVowel = 22
|
|
660
|
+
DevanagariConsonant = 23
|
|
661
|
+
DevanagariNumeric = 24
|
|
662
|
+
class ParagraphAlignment(Enum, Int32):
|
|
663
|
+
Undefined = 0
|
|
664
|
+
Left = 1
|
|
665
|
+
Center = 2
|
|
666
|
+
Right = 3
|
|
667
|
+
Justify = 4
|
|
668
|
+
class ParagraphStyle(Enum, Int32):
|
|
669
|
+
Undefined = 0
|
|
670
|
+
None_ = 1
|
|
671
|
+
Normal = 2
|
|
672
|
+
Heading1 = 3
|
|
673
|
+
Heading2 = 4
|
|
674
|
+
Heading3 = 5
|
|
675
|
+
Heading4 = 6
|
|
676
|
+
Heading5 = 7
|
|
677
|
+
Heading6 = 8
|
|
678
|
+
Heading7 = 9
|
|
679
|
+
Heading8 = 10
|
|
680
|
+
Heading9 = 11
|
|
681
|
+
class PointOptions(Enum, UInt32):
|
|
682
|
+
None_ = 0
|
|
683
|
+
IncludeInset = 1
|
|
684
|
+
Start = 32
|
|
685
|
+
ClientCoordinates = 256
|
|
686
|
+
AllowOffClient = 512
|
|
687
|
+
Transform = 1024
|
|
688
|
+
NoHorizontalScroll = 65536
|
|
689
|
+
NoVerticalScroll = 262144
|
|
690
|
+
class RangeGravity(Enum, Int32):
|
|
691
|
+
UIBehavior = 0
|
|
692
|
+
Backward = 1
|
|
693
|
+
Forward = 2
|
|
694
|
+
Inward = 3
|
|
695
|
+
Outward = 4
|
|
696
|
+
class RichEditMathMode(Enum, Int32):
|
|
697
|
+
NoMath = 0
|
|
698
|
+
MathOnly = 1
|
|
699
|
+
class RichEditTextDocument(ComPtr):
|
|
700
|
+
extends: IInspectable
|
|
701
|
+
default_interface: win32more.Microsoft.UI.Text.ITextDocument
|
|
702
|
+
_classid_ = 'Microsoft.UI.Text.RichEditTextDocument'
|
|
703
|
+
@winrt_mixinmethod
|
|
704
|
+
def get_CaretType(self: win32more.Microsoft.UI.Text.ITextDocument) -> win32more.Microsoft.UI.Text.CaretType: ...
|
|
705
|
+
@winrt_mixinmethod
|
|
706
|
+
def put_CaretType(self: win32more.Microsoft.UI.Text.ITextDocument, value: win32more.Microsoft.UI.Text.CaretType) -> Void: ...
|
|
707
|
+
@winrt_mixinmethod
|
|
708
|
+
def get_DefaultTabStop(self: win32more.Microsoft.UI.Text.ITextDocument) -> Single: ...
|
|
709
|
+
@winrt_mixinmethod
|
|
710
|
+
def put_DefaultTabStop(self: win32more.Microsoft.UI.Text.ITextDocument, value: Single) -> Void: ...
|
|
711
|
+
@winrt_mixinmethod
|
|
712
|
+
def get_Selection(self: win32more.Microsoft.UI.Text.ITextDocument) -> win32more.Microsoft.UI.Text.ITextSelection: ...
|
|
713
|
+
@winrt_mixinmethod
|
|
714
|
+
def get_UndoLimit(self: win32more.Microsoft.UI.Text.ITextDocument) -> UInt32: ...
|
|
715
|
+
@winrt_mixinmethod
|
|
716
|
+
def put_UndoLimit(self: win32more.Microsoft.UI.Text.ITextDocument, value: UInt32) -> Void: ...
|
|
717
|
+
@winrt_mixinmethod
|
|
718
|
+
def CanCopy(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
719
|
+
@winrt_mixinmethod
|
|
720
|
+
def CanPaste(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
721
|
+
@winrt_mixinmethod
|
|
722
|
+
def CanRedo(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
723
|
+
@winrt_mixinmethod
|
|
724
|
+
def CanUndo(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
725
|
+
@winrt_mixinmethod
|
|
726
|
+
def ApplyDisplayUpdates(self: win32more.Microsoft.UI.Text.ITextDocument) -> Int32: ...
|
|
727
|
+
@winrt_mixinmethod
|
|
728
|
+
def BatchDisplayUpdates(self: win32more.Microsoft.UI.Text.ITextDocument) -> Int32: ...
|
|
729
|
+
@winrt_mixinmethod
|
|
730
|
+
def BeginUndoGroup(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
731
|
+
@winrt_mixinmethod
|
|
732
|
+
def EndUndoGroup(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
733
|
+
@winrt_mixinmethod
|
|
734
|
+
def GetDefaultCharacterFormat(self: win32more.Microsoft.UI.Text.ITextDocument) -> win32more.Microsoft.UI.Text.ITextCharacterFormat: ...
|
|
735
|
+
@winrt_mixinmethod
|
|
736
|
+
def GetDefaultParagraphFormat(self: win32more.Microsoft.UI.Text.ITextDocument) -> win32more.Microsoft.UI.Text.ITextParagraphFormat: ...
|
|
737
|
+
@winrt_mixinmethod
|
|
738
|
+
def GetRange(self: win32more.Microsoft.UI.Text.ITextDocument, startPosition: Int32, endPosition: Int32) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
739
|
+
@winrt_mixinmethod
|
|
740
|
+
def GetRangeFromPoint(self: win32more.Microsoft.UI.Text.ITextDocument, point: win32more.Windows.Foundation.Point, options: win32more.Microsoft.UI.Text.PointOptions) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
741
|
+
@winrt_mixinmethod
|
|
742
|
+
def GetText(self: win32more.Microsoft.UI.Text.ITextDocument, options: win32more.Microsoft.UI.Text.TextGetOptions, value: POINTER(WinRT_String)) -> Void: ...
|
|
743
|
+
@winrt_mixinmethod
|
|
744
|
+
def LoadFromStream(self: win32more.Microsoft.UI.Text.ITextDocument, options: win32more.Microsoft.UI.Text.TextSetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
745
|
+
@winrt_mixinmethod
|
|
746
|
+
def Redo(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
747
|
+
@winrt_mixinmethod
|
|
748
|
+
def SaveToStream(self: win32more.Microsoft.UI.Text.ITextDocument, options: win32more.Microsoft.UI.Text.TextGetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
749
|
+
@winrt_mixinmethod
|
|
750
|
+
def SetDefaultCharacterFormat(self: win32more.Microsoft.UI.Text.ITextDocument, value: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Void: ...
|
|
751
|
+
@winrt_mixinmethod
|
|
752
|
+
def SetDefaultParagraphFormat(self: win32more.Microsoft.UI.Text.ITextDocument, value: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Void: ...
|
|
753
|
+
@winrt_mixinmethod
|
|
754
|
+
def SetText(self: win32more.Microsoft.UI.Text.ITextDocument, options: win32more.Microsoft.UI.Text.TextSetOptions, value: WinRT_String) -> Void: ...
|
|
755
|
+
@winrt_mixinmethod
|
|
756
|
+
def Undo(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
757
|
+
@winrt_mixinmethod
|
|
758
|
+
def get_AlignmentIncludesTrailingWhitespace(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
759
|
+
@winrt_mixinmethod
|
|
760
|
+
def put_AlignmentIncludesTrailingWhitespace(self: win32more.Microsoft.UI.Text.ITextDocument, value: Boolean) -> Void: ...
|
|
761
|
+
@winrt_mixinmethod
|
|
762
|
+
def get_IgnoreTrailingCharacterSpacing(self: win32more.Microsoft.UI.Text.ITextDocument) -> Boolean: ...
|
|
763
|
+
@winrt_mixinmethod
|
|
764
|
+
def put_IgnoreTrailingCharacterSpacing(self: win32more.Microsoft.UI.Text.ITextDocument, value: Boolean) -> Void: ...
|
|
765
|
+
@winrt_mixinmethod
|
|
766
|
+
def ClearUndoRedoHistory(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
767
|
+
AlignmentIncludesTrailingWhitespace = property(get_AlignmentIncludesTrailingWhitespace, put_AlignmentIncludesTrailingWhitespace)
|
|
768
|
+
CaretType = property(get_CaretType, put_CaretType)
|
|
769
|
+
DefaultTabStop = property(get_DefaultTabStop, put_DefaultTabStop)
|
|
770
|
+
IgnoreTrailingCharacterSpacing = property(get_IgnoreTrailingCharacterSpacing, put_IgnoreTrailingCharacterSpacing)
|
|
771
|
+
Selection = property(get_Selection, None)
|
|
772
|
+
UndoLimit = property(get_UndoLimit, put_UndoLimit)
|
|
773
|
+
class RichEditTextRange(ComPtr):
|
|
774
|
+
extends: IInspectable
|
|
775
|
+
default_interface: win32more.Microsoft.UI.Text.ITextRange
|
|
776
|
+
_classid_ = 'Microsoft.UI.Text.RichEditTextRange'
|
|
777
|
+
@winrt_mixinmethod
|
|
778
|
+
def get_Character(self: win32more.Microsoft.UI.Text.ITextRange) -> Char: ...
|
|
779
|
+
@winrt_mixinmethod
|
|
780
|
+
def put_Character(self: win32more.Microsoft.UI.Text.ITextRange, value: Char) -> Void: ...
|
|
781
|
+
@winrt_mixinmethod
|
|
782
|
+
def get_CharacterFormat(self: win32more.Microsoft.UI.Text.ITextRange) -> win32more.Microsoft.UI.Text.ITextCharacterFormat: ...
|
|
783
|
+
@winrt_mixinmethod
|
|
784
|
+
def put_CharacterFormat(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.ITextCharacterFormat) -> Void: ...
|
|
785
|
+
@winrt_mixinmethod
|
|
786
|
+
def get_FormattedText(self: win32more.Microsoft.UI.Text.ITextRange) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
787
|
+
@winrt_mixinmethod
|
|
788
|
+
def put_FormattedText(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.ITextRange) -> Void: ...
|
|
789
|
+
@winrt_mixinmethod
|
|
790
|
+
def get_EndPosition(self: win32more.Microsoft.UI.Text.ITextRange) -> Int32: ...
|
|
791
|
+
@winrt_mixinmethod
|
|
792
|
+
def put_EndPosition(self: win32more.Microsoft.UI.Text.ITextRange, value: Int32) -> Void: ...
|
|
793
|
+
@winrt_mixinmethod
|
|
794
|
+
def get_Gravity(self: win32more.Microsoft.UI.Text.ITextRange) -> win32more.Microsoft.UI.Text.RangeGravity: ...
|
|
795
|
+
@winrt_mixinmethod
|
|
796
|
+
def put_Gravity(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.RangeGravity) -> Void: ...
|
|
797
|
+
@winrt_mixinmethod
|
|
798
|
+
def get_Length(self: win32more.Microsoft.UI.Text.ITextRange) -> Int32: ...
|
|
799
|
+
@winrt_mixinmethod
|
|
800
|
+
def get_Link(self: win32more.Microsoft.UI.Text.ITextRange) -> WinRT_String: ...
|
|
801
|
+
@winrt_mixinmethod
|
|
802
|
+
def put_Link(self: win32more.Microsoft.UI.Text.ITextRange, value: WinRT_String) -> Void: ...
|
|
803
|
+
@winrt_mixinmethod
|
|
804
|
+
def get_ParagraphFormat(self: win32more.Microsoft.UI.Text.ITextRange) -> win32more.Microsoft.UI.Text.ITextParagraphFormat: ...
|
|
805
|
+
@winrt_mixinmethod
|
|
806
|
+
def put_ParagraphFormat(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.ITextParagraphFormat) -> Void: ...
|
|
807
|
+
@winrt_mixinmethod
|
|
808
|
+
def get_StartPosition(self: win32more.Microsoft.UI.Text.ITextRange) -> Int32: ...
|
|
809
|
+
@winrt_mixinmethod
|
|
810
|
+
def put_StartPosition(self: win32more.Microsoft.UI.Text.ITextRange, value: Int32) -> Void: ...
|
|
811
|
+
@winrt_mixinmethod
|
|
812
|
+
def get_StoryLength(self: win32more.Microsoft.UI.Text.ITextRange) -> Int32: ...
|
|
813
|
+
@winrt_mixinmethod
|
|
814
|
+
def get_Text(self: win32more.Microsoft.UI.Text.ITextRange) -> WinRT_String: ...
|
|
815
|
+
@winrt_mixinmethod
|
|
816
|
+
def put_Text(self: win32more.Microsoft.UI.Text.ITextRange, value: WinRT_String) -> Void: ...
|
|
817
|
+
@winrt_mixinmethod
|
|
818
|
+
def CanPaste(self: win32more.Microsoft.UI.Text.ITextRange, format: Int32) -> Boolean: ...
|
|
819
|
+
@winrt_mixinmethod
|
|
820
|
+
def ChangeCase(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.LetterCase) -> Void: ...
|
|
821
|
+
@winrt_mixinmethod
|
|
822
|
+
def Collapse(self: win32more.Microsoft.UI.Text.ITextRange, value: Boolean) -> Void: ...
|
|
823
|
+
@winrt_mixinmethod
|
|
824
|
+
def Copy(self: win32more.Microsoft.UI.Text.ITextRange) -> Void: ...
|
|
825
|
+
@winrt_mixinmethod
|
|
826
|
+
def Cut(self: win32more.Microsoft.UI.Text.ITextRange) -> Void: ...
|
|
827
|
+
@winrt_mixinmethod
|
|
828
|
+
def Delete(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
829
|
+
@winrt_mixinmethod
|
|
830
|
+
def EndOf(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
831
|
+
@winrt_mixinmethod
|
|
832
|
+
def Expand(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit) -> Int32: ...
|
|
833
|
+
@winrt_mixinmethod
|
|
834
|
+
def FindText(self: win32more.Microsoft.UI.Text.ITextRange, value: WinRT_String, scanLength: Int32, options: win32more.Microsoft.UI.Text.FindOptions) -> Int32: ...
|
|
835
|
+
@winrt_mixinmethod
|
|
836
|
+
def GetCharacterUtf32(self: win32more.Microsoft.UI.Text.ITextRange, value: POINTER(UInt32), offset: Int32) -> Void: ...
|
|
837
|
+
@winrt_mixinmethod
|
|
838
|
+
def GetClone(self: win32more.Microsoft.UI.Text.ITextRange) -> win32more.Microsoft.UI.Text.ITextRange: ...
|
|
839
|
+
@winrt_mixinmethod
|
|
840
|
+
def GetIndex(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit) -> Int32: ...
|
|
841
|
+
@winrt_mixinmethod
|
|
842
|
+
def GetPoint(self: win32more.Microsoft.UI.Text.ITextRange, horizontalAlign: win32more.Microsoft.UI.Text.HorizontalCharacterAlignment, verticalAlign: win32more.Microsoft.UI.Text.VerticalCharacterAlignment, options: win32more.Microsoft.UI.Text.PointOptions, point: POINTER(win32more.Windows.Foundation.Point)) -> Void: ...
|
|
843
|
+
@winrt_mixinmethod
|
|
844
|
+
def GetRect(self: win32more.Microsoft.UI.Text.ITextRange, options: win32more.Microsoft.UI.Text.PointOptions, rect: POINTER(win32more.Windows.Foundation.Rect), hit: POINTER(Int32)) -> Void: ...
|
|
845
|
+
@winrt_mixinmethod
|
|
846
|
+
def GetText(self: win32more.Microsoft.UI.Text.ITextRange, options: win32more.Microsoft.UI.Text.TextGetOptions, value: POINTER(WinRT_String)) -> Void: ...
|
|
847
|
+
@winrt_mixinmethod
|
|
848
|
+
def GetTextViaStream(self: win32more.Microsoft.UI.Text.ITextRange, options: win32more.Microsoft.UI.Text.TextGetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
849
|
+
@winrt_mixinmethod
|
|
850
|
+
def InRange(self: win32more.Microsoft.UI.Text.ITextRange, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
851
|
+
@winrt_mixinmethod
|
|
852
|
+
def InsertImage(self: win32more.Microsoft.UI.Text.ITextRange, width: Int32, height: Int32, ascent: Int32, verticalAlign: win32more.Microsoft.UI.Text.VerticalCharacterAlignment, alternateText: WinRT_String, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
853
|
+
@winrt_mixinmethod
|
|
854
|
+
def InStory(self: win32more.Microsoft.UI.Text.ITextRange, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
855
|
+
@winrt_mixinmethod
|
|
856
|
+
def IsEqual(self: win32more.Microsoft.UI.Text.ITextRange, range: win32more.Microsoft.UI.Text.ITextRange) -> Boolean: ...
|
|
857
|
+
@winrt_mixinmethod
|
|
858
|
+
def Move(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
859
|
+
@winrt_mixinmethod
|
|
860
|
+
def MoveEnd(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
861
|
+
@winrt_mixinmethod
|
|
862
|
+
def MoveStart(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, count: Int32) -> Int32: ...
|
|
863
|
+
@winrt_mixinmethod
|
|
864
|
+
def Paste(self: win32more.Microsoft.UI.Text.ITextRange, format: Int32) -> Void: ...
|
|
865
|
+
@winrt_mixinmethod
|
|
866
|
+
def ScrollIntoView(self: win32more.Microsoft.UI.Text.ITextRange, value: win32more.Microsoft.UI.Text.PointOptions) -> Void: ...
|
|
867
|
+
@winrt_mixinmethod
|
|
868
|
+
def MatchSelection(self: win32more.Microsoft.UI.Text.ITextRange) -> Void: ...
|
|
869
|
+
@winrt_mixinmethod
|
|
870
|
+
def SetIndex(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, index: Int32, extend: Boolean) -> Void: ...
|
|
871
|
+
@winrt_mixinmethod
|
|
872
|
+
def SetPoint(self: win32more.Microsoft.UI.Text.ITextRange, point: win32more.Windows.Foundation.Point, options: win32more.Microsoft.UI.Text.PointOptions, extend: Boolean) -> Void: ...
|
|
873
|
+
@winrt_mixinmethod
|
|
874
|
+
def SetRange(self: win32more.Microsoft.UI.Text.ITextRange, startPosition: Int32, endPosition: Int32) -> Void: ...
|
|
875
|
+
@winrt_mixinmethod
|
|
876
|
+
def SetText(self: win32more.Microsoft.UI.Text.ITextRange, options: win32more.Microsoft.UI.Text.TextSetOptions, value: WinRT_String) -> Void: ...
|
|
877
|
+
@winrt_mixinmethod
|
|
878
|
+
def SetTextViaStream(self: win32more.Microsoft.UI.Text.ITextRange, options: win32more.Microsoft.UI.Text.TextSetOptions, value: win32more.Windows.Storage.Streams.IRandomAccessStream) -> Void: ...
|
|
879
|
+
@winrt_mixinmethod
|
|
880
|
+
def StartOf(self: win32more.Microsoft.UI.Text.ITextRange, unit: win32more.Microsoft.UI.Text.TextRangeUnit, extend: Boolean) -> Int32: ...
|
|
881
|
+
Character = property(get_Character, put_Character)
|
|
882
|
+
CharacterFormat = property(get_CharacterFormat, put_CharacterFormat)
|
|
883
|
+
EndPosition = property(get_EndPosition, put_EndPosition)
|
|
884
|
+
FormattedText = property(get_FormattedText, put_FormattedText)
|
|
885
|
+
Gravity = property(get_Gravity, put_Gravity)
|
|
886
|
+
Length = property(get_Length, None)
|
|
887
|
+
Link = property(get_Link, put_Link)
|
|
888
|
+
ParagraphFormat = property(get_ParagraphFormat, put_ParagraphFormat)
|
|
889
|
+
StartPosition = property(get_StartPosition, put_StartPosition)
|
|
890
|
+
StoryLength = property(get_StoryLength, None)
|
|
891
|
+
Text = property(get_Text, put_Text)
|
|
892
|
+
class SelectionOptions(Enum, UInt32):
|
|
893
|
+
StartActive = 1
|
|
894
|
+
AtEndOfLine = 2
|
|
895
|
+
Overtype = 4
|
|
896
|
+
Active = 8
|
|
897
|
+
Replace = 16
|
|
898
|
+
class SelectionType(Enum, Int32):
|
|
899
|
+
None_ = 0
|
|
900
|
+
InsertionPoint = 1
|
|
901
|
+
Normal = 2
|
|
902
|
+
InlineShape = 7
|
|
903
|
+
Shape = 8
|
|
904
|
+
class TabAlignment(Enum, Int32):
|
|
905
|
+
Left = 0
|
|
906
|
+
Center = 1
|
|
907
|
+
Right = 2
|
|
908
|
+
Decimal = 3
|
|
909
|
+
Bar = 4
|
|
910
|
+
class TabLeader(Enum, Int32):
|
|
911
|
+
Spaces = 0
|
|
912
|
+
Dots = 1
|
|
913
|
+
Dashes = 2
|
|
914
|
+
Lines = 3
|
|
915
|
+
ThickLines = 4
|
|
916
|
+
Equals = 5
|
|
917
|
+
class _TextConstants_Meta_(ComPtr.__class__):
|
|
918
|
+
pass
|
|
919
|
+
class TextConstants(ComPtr, metaclass=_TextConstants_Meta_):
|
|
920
|
+
extends: IInspectable
|
|
921
|
+
_classid_ = 'Microsoft.UI.Text.TextConstants'
|
|
922
|
+
@winrt_classmethod
|
|
923
|
+
def get_AutoColor(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> win32more.Windows.UI.Color: ...
|
|
924
|
+
@winrt_classmethod
|
|
925
|
+
def get_MinUnitCount(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> Int32: ...
|
|
926
|
+
@winrt_classmethod
|
|
927
|
+
def get_MaxUnitCount(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> Int32: ...
|
|
928
|
+
@winrt_classmethod
|
|
929
|
+
def get_UndefinedColor(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> win32more.Windows.UI.Color: ...
|
|
930
|
+
@winrt_classmethod
|
|
931
|
+
def get_UndefinedFloatValue(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> Single: ...
|
|
932
|
+
@winrt_classmethod
|
|
933
|
+
def get_UndefinedInt32Value(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> Int32: ...
|
|
934
|
+
@winrt_classmethod
|
|
935
|
+
def get_UndefinedFontStretch(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> win32more.Windows.UI.Text.FontStretch: ...
|
|
936
|
+
@winrt_classmethod
|
|
937
|
+
def get_UndefinedFontStyle(cls: win32more.Microsoft.UI.Text.ITextConstantsStatics) -> win32more.Windows.UI.Text.FontStyle: ...
|
|
938
|
+
_TextConstants_Meta_.AutoColor = property(get_AutoColor, None)
|
|
939
|
+
_TextConstants_Meta_.MaxUnitCount = property(get_MaxUnitCount, None)
|
|
940
|
+
_TextConstants_Meta_.MinUnitCount = property(get_MinUnitCount, None)
|
|
941
|
+
_TextConstants_Meta_.UndefinedColor = property(get_UndefinedColor, None)
|
|
942
|
+
_TextConstants_Meta_.UndefinedFloatValue = property(get_UndefinedFloatValue, None)
|
|
943
|
+
_TextConstants_Meta_.UndefinedFontStretch = property(get_UndefinedFontStretch, None)
|
|
944
|
+
_TextConstants_Meta_.UndefinedFontStyle = property(get_UndefinedFontStyle, None)
|
|
945
|
+
_TextConstants_Meta_.UndefinedInt32Value = property(get_UndefinedInt32Value, None)
|
|
946
|
+
class TextGetOptions(Enum, UInt32):
|
|
947
|
+
None_ = 0
|
|
948
|
+
AdjustCrlf = 1
|
|
949
|
+
UseCrlf = 2
|
|
950
|
+
UseObjectText = 4
|
|
951
|
+
AllowFinalEop = 8
|
|
952
|
+
NoHidden = 32
|
|
953
|
+
IncludeNumbering = 64
|
|
954
|
+
FormatRtf = 8192
|
|
955
|
+
UseLf = 16777216
|
|
956
|
+
class TextRangeUnit(Enum, Int32):
|
|
957
|
+
Character = 0
|
|
958
|
+
Word = 1
|
|
959
|
+
Sentence = 2
|
|
960
|
+
Paragraph = 3
|
|
961
|
+
Line = 4
|
|
962
|
+
Story = 5
|
|
963
|
+
Screen = 6
|
|
964
|
+
Section = 7
|
|
965
|
+
Window = 8
|
|
966
|
+
CharacterFormat = 9
|
|
967
|
+
ParagraphFormat = 10
|
|
968
|
+
Object = 11
|
|
969
|
+
HardParagraph = 12
|
|
970
|
+
Cluster = 13
|
|
971
|
+
Bold = 14
|
|
972
|
+
Italic = 15
|
|
973
|
+
Underline = 16
|
|
974
|
+
Strikethrough = 17
|
|
975
|
+
ProtectedText = 18
|
|
976
|
+
Link = 19
|
|
977
|
+
SmallCaps = 20
|
|
978
|
+
AllCaps = 21
|
|
979
|
+
Hidden = 22
|
|
980
|
+
Outline = 23
|
|
981
|
+
Shadow = 24
|
|
982
|
+
Imprint = 25
|
|
983
|
+
Disabled = 26
|
|
984
|
+
Revised = 27
|
|
985
|
+
Subscript = 28
|
|
986
|
+
Superscript = 29
|
|
987
|
+
FontBound = 30
|
|
988
|
+
LinkProtected = 31
|
|
989
|
+
ContentLink = 32
|
|
990
|
+
class TextScript(Enum, Int32):
|
|
991
|
+
Undefined = 0
|
|
992
|
+
Ansi = 1
|
|
993
|
+
EastEurope = 2
|
|
994
|
+
Cyrillic = 3
|
|
995
|
+
Greek = 4
|
|
996
|
+
Turkish = 5
|
|
997
|
+
Hebrew = 6
|
|
998
|
+
Arabic = 7
|
|
999
|
+
Baltic = 8
|
|
1000
|
+
Vietnamese = 9
|
|
1001
|
+
Default = 10
|
|
1002
|
+
Symbol = 11
|
|
1003
|
+
Thai = 12
|
|
1004
|
+
ShiftJis = 13
|
|
1005
|
+
GB2312 = 14
|
|
1006
|
+
Hangul = 15
|
|
1007
|
+
Big5 = 16
|
|
1008
|
+
PC437 = 17
|
|
1009
|
+
Oem = 18
|
|
1010
|
+
Mac = 19
|
|
1011
|
+
Armenian = 20
|
|
1012
|
+
Syriac = 21
|
|
1013
|
+
Thaana = 22
|
|
1014
|
+
Devanagari = 23
|
|
1015
|
+
Bengali = 24
|
|
1016
|
+
Gurmukhi = 25
|
|
1017
|
+
Gujarati = 26
|
|
1018
|
+
Oriya = 27
|
|
1019
|
+
Tamil = 28
|
|
1020
|
+
Telugu = 29
|
|
1021
|
+
Kannada = 30
|
|
1022
|
+
Malayalam = 31
|
|
1023
|
+
Sinhala = 32
|
|
1024
|
+
Lao = 33
|
|
1025
|
+
Tibetan = 34
|
|
1026
|
+
Myanmar = 35
|
|
1027
|
+
Georgian = 36
|
|
1028
|
+
Jamo = 37
|
|
1029
|
+
Ethiopic = 38
|
|
1030
|
+
Cherokee = 39
|
|
1031
|
+
Aboriginal = 40
|
|
1032
|
+
Ogham = 41
|
|
1033
|
+
Runic = 42
|
|
1034
|
+
Khmer = 43
|
|
1035
|
+
Mongolian = 44
|
|
1036
|
+
Braille = 45
|
|
1037
|
+
Yi = 46
|
|
1038
|
+
Limbu = 47
|
|
1039
|
+
TaiLe = 48
|
|
1040
|
+
NewTaiLue = 49
|
|
1041
|
+
SylotiNagri = 50
|
|
1042
|
+
Kharoshthi = 51
|
|
1043
|
+
Kayahli = 52
|
|
1044
|
+
UnicodeSymbol = 53
|
|
1045
|
+
Emoji = 54
|
|
1046
|
+
Glagolitic = 55
|
|
1047
|
+
Lisu = 56
|
|
1048
|
+
Vai = 57
|
|
1049
|
+
NKo = 58
|
|
1050
|
+
Osmanya = 59
|
|
1051
|
+
PhagsPa = 60
|
|
1052
|
+
Gothic = 61
|
|
1053
|
+
Deseret = 62
|
|
1054
|
+
Tifinagh = 63
|
|
1055
|
+
class TextSetOptions(Enum, UInt32):
|
|
1056
|
+
None_ = 0
|
|
1057
|
+
UnicodeBidi = 1
|
|
1058
|
+
Unlink = 8
|
|
1059
|
+
Unhide = 16
|
|
1060
|
+
CheckTextLimit = 32
|
|
1061
|
+
FormatRtf = 8192
|
|
1062
|
+
ApplyRtfDocumentDefaults = 16384
|
|
1063
|
+
class UnderlineType(Enum, Int32):
|
|
1064
|
+
Undefined = 0
|
|
1065
|
+
None_ = 1
|
|
1066
|
+
Single = 2
|
|
1067
|
+
Words = 3
|
|
1068
|
+
Double = 4
|
|
1069
|
+
Dotted = 5
|
|
1070
|
+
Dash = 6
|
|
1071
|
+
DashDot = 7
|
|
1072
|
+
DashDotDot = 8
|
|
1073
|
+
Wave = 9
|
|
1074
|
+
Thick = 10
|
|
1075
|
+
Thin = 11
|
|
1076
|
+
DoubleWave = 12
|
|
1077
|
+
HeavyWave = 13
|
|
1078
|
+
LongDash = 14
|
|
1079
|
+
ThickDash = 15
|
|
1080
|
+
ThickDashDot = 16
|
|
1081
|
+
ThickDashDotDot = 17
|
|
1082
|
+
ThickDotted = 18
|
|
1083
|
+
ThickLongDash = 19
|
|
1084
|
+
class VerticalCharacterAlignment(Enum, Int32):
|
|
1085
|
+
Top = 0
|
|
1086
|
+
Baseline = 1
|
|
1087
|
+
Bottom = 2
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
make_ready(__name__)
|