aspose-html-net 25.6.0__py3-none-win_amd64.whl → 25.8.0__py3-none-win_amd64.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.
- aspose/assemblies/html/Aspose.HTML.dll +0 -0
- aspose/assemblies/html/WrpInterop.Aspose.Html.dll +0 -0
- aspose/html/__init__.pyi +3367 -2025
- aspose/html/collections/__init__.pyi +4 -4
- aspose/html/dom/__init__.pyi +778 -404
- aspose/html/dom/canvas/__init__.pyi +2 -2
- aspose/html/dom/css/__init__.pyi +12 -11
- aspose/html/dom/events/__init__.pyi +20 -20
- aspose/html/dom/mutations/__init__.pyi +4 -4
- aspose/html/dom/svg/__init__.pyi +2769 -1635
- aspose/html/dom/svg/datatypes/__init__.pyi +52 -52
- aspose/html/dom/svg/events/__init__.pyi +4 -4
- aspose/html/dom/svg/filters/__init__.pyi +1375 -825
- aspose/html/dom/svg/paths/__init__.pyi +42 -42
- aspose/html/dom/svg/saving/__init__.pyi +23 -0
- aspose/html/rendering/__init__.pyi +8 -0
- aspose/html/window/__init__.pyi +18 -7
- aspose/html.cp310-win_amd64.pyd +0 -0
- aspose/html.cp311-win_amd64.pyd +0 -0
- aspose/html.cp313-win_amd64.pyd +0 -0
- aspose/html.cp35-win_amd64.pyd +0 -0
- aspose/html.cp36-win_amd64.pyd +0 -0
- aspose/html.cp37-win_amd64.pyd +0 -0
- aspose/html.cp38-win_amd64.pyd +0 -0
- aspose/html.cp39-win_amd64.pyd +0 -0
- aspose_html_net-25.8.0.dist-info/METADATA +224 -0
- {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/RECORD +30 -30
- aspose_html_net-25.6.0.dist-info/METADATA +0 -114
- {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/WHEEL +0 -0
- {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/entry_points.txt +0 -0
- {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/top_level.txt +0 -0
@@ -74,9 +74,9 @@ class DOMTokenList(aspose.html.dom.DOMObject):
|
|
74
74
|
...
|
75
75
|
|
76
76
|
def get_platform_type(self) -> Type:
|
77
|
-
'''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
|
77
|
+
'''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
|
78
78
|
|
79
|
-
:returns: The ECMAScript object
|
79
|
+
:returns: The ECMAScript object.'''
|
80
80
|
...
|
81
81
|
|
82
82
|
def contains(self, token : str) -> bool:
|
@@ -164,9 +164,9 @@ class NamedNodeMap(aspose.html.dom.DOMObject):
|
|
164
164
|
'''Represents collections of attributes that can be accessed by name.'''
|
165
165
|
|
166
166
|
def get_platform_type(self) -> Type:
|
167
|
-
'''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
|
167
|
+
'''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
|
168
168
|
|
169
|
-
:returns: The ECMAScript object
|
169
|
+
:returns: The ECMAScript object.'''
|
170
170
|
...
|
171
171
|
|
172
172
|
def get_named_item(self, name : str) -> aspose.html.dom.Attr:
|