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.
Files changed (31) hide show
  1. aspose/assemblies/html/Aspose.HTML.dll +0 -0
  2. aspose/assemblies/html/WrpInterop.Aspose.Html.dll +0 -0
  3. aspose/html/__init__.pyi +3367 -2025
  4. aspose/html/collections/__init__.pyi +4 -4
  5. aspose/html/dom/__init__.pyi +778 -404
  6. aspose/html/dom/canvas/__init__.pyi +2 -2
  7. aspose/html/dom/css/__init__.pyi +12 -11
  8. aspose/html/dom/events/__init__.pyi +20 -20
  9. aspose/html/dom/mutations/__init__.pyi +4 -4
  10. aspose/html/dom/svg/__init__.pyi +2769 -1635
  11. aspose/html/dom/svg/datatypes/__init__.pyi +52 -52
  12. aspose/html/dom/svg/events/__init__.pyi +4 -4
  13. aspose/html/dom/svg/filters/__init__.pyi +1375 -825
  14. aspose/html/dom/svg/paths/__init__.pyi +42 -42
  15. aspose/html/dom/svg/saving/__init__.pyi +23 -0
  16. aspose/html/rendering/__init__.pyi +8 -0
  17. aspose/html/window/__init__.pyi +18 -7
  18. aspose/html.cp310-win_amd64.pyd +0 -0
  19. aspose/html.cp311-win_amd64.pyd +0 -0
  20. aspose/html.cp313-win_amd64.pyd +0 -0
  21. aspose/html.cp35-win_amd64.pyd +0 -0
  22. aspose/html.cp36-win_amd64.pyd +0 -0
  23. aspose/html.cp37-win_amd64.pyd +0 -0
  24. aspose/html.cp38-win_amd64.pyd +0 -0
  25. aspose/html.cp39-win_amd64.pyd +0 -0
  26. aspose_html_net-25.8.0.dist-info/METADATA +224 -0
  27. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/RECORD +30 -30
  28. aspose_html_net-25.6.0.dist-info/METADATA +0 -114
  29. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/WHEEL +0 -0
  30. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/entry_points.txt +0 -0
  31. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.8.0.dist-info}/top_level.txt +0 -0
@@ -1012,9 +1012,9 @@ class Path2D(aspose.html.dom.DOMObject):
1012
1012
  ...
1013
1013
 
1014
1014
  def get_platform_type(self) -> Type:
1015
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
1015
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
1016
1016
 
1017
- :returns: The ECMAScript object :py:class:`System.Type`.'''
1017
+ :returns: The ECMAScript object.'''
1018
1018
  ...
1019
1019
 
1020
1020
  def close_path(self):
@@ -467,7 +467,8 @@ class CSSValueList(CSSValue):
467
467
 
468
468
  @property
469
469
  def length(self) -> int:
470
- '''The number of CSSValues in the list.'''
470
+ '''The length read-only property of the CSSValueList interface represents the number of CSSValues in the list.
471
+ The range of valid values of the indices is 0 to length-1 inclusive.'''
471
472
  ...
472
473
 
473
474
  def __getitem__(self, key : int) -> aspose.html.dom.css.CSSValue:
@@ -480,9 +481,9 @@ class Counter(aspose.html.dom.DOMObject):
480
481
  '''The Counter interface is used to represent any counter or counters function value. This interface reflects the values in the underlying style property.'''
481
482
 
482
483
  def get_platform_type(self) -> Type:
483
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
484
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
484
485
 
485
- :returns: The ECMAScript object :py:class:`System.Type`.'''
486
+ :returns: The ECMAScript object.'''
486
487
  ...
487
488
 
488
489
  @property
@@ -3404,9 +3405,9 @@ class RGBColor(aspose.html.dom.DOMObject):
3404
3405
  '''The RGBColor interface is used to represent any RGB color value. This interface reflects the values in the underlying style property. Hence, modifications made to the CSSPrimitiveValue objects modify the style property.'''
3405
3406
 
3406
3407
  def get_platform_type(self) -> Type:
3407
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
3408
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
3408
3409
 
3409
- :returns: The ECMAScript object :py:class:`System.Type`.'''
3410
+ :returns: The ECMAScript object.'''
3410
3411
  ...
3411
3412
 
3412
3413
  def to_native(self) -> aspose.pydrawing.Color:
@@ -3417,22 +3418,22 @@ class RGBColor(aspose.html.dom.DOMObject):
3417
3418
 
3418
3419
  @property
3419
3420
  def red(self) -> aspose.html.dom.css.CSSPrimitiveValue:
3420
- '''This attribute is used for the red value of the RGB color.'''
3421
+ '''Gets the red component value of this Color class.'''
3421
3422
  ...
3422
3423
 
3423
3424
  @property
3424
3425
  def green(self) -> aspose.html.dom.css.CSSPrimitiveValue:
3425
- '''This attribute is used for the green value of the RGB color.'''
3426
+ '''Gets the green component value of this Color class.'''
3426
3427
  ...
3427
3428
 
3428
3429
  @property
3429
3430
  def blue(self) -> aspose.html.dom.css.CSSPrimitiveValue:
3430
- '''This attribute is used for the blue value of the RGB color.'''
3431
+ '''Gets the blue component value of this Color class.'''
3431
3432
  ...
3432
3433
 
3433
3434
  @property
3434
3435
  def alpha(self) -> aspose.html.dom.css.CSSPrimitiveValue:
3435
- '''This attribute is used for the alpha value of the RGB color.'''
3436
+ '''Gets the alpha component value of this Color class.'''
3436
3437
  ...
3437
3438
 
3438
3439
  ...
@@ -3441,9 +3442,9 @@ class Rect(aspose.html.dom.DOMObject):
3441
3442
  '''The Rect interface is used to represent any rect value. This interface reflects the values in the underlying style property. Hence, modifications made to the CSSPrimitiveValue objects modify the style property.'''
3442
3443
 
3443
3444
  def get_platform_type(self) -> Type:
3444
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
3445
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
3445
3446
 
3446
- :returns: The ECMAScript object :py:class:`System.Type`.'''
3447
+ :returns: The ECMAScript object.'''
3447
3448
  ...
3448
3449
 
3449
3450
  @property
@@ -57,9 +57,9 @@ class CustomEvent(Event):
57
57
  '''Events using the CustomEvent interface can be used to carry custom data.'''
58
58
 
59
59
  def get_platform_type(self) -> Type:
60
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
60
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
61
61
 
62
- :returns: The ECMAScript object :py:class:`System.Type`.'''
62
+ :returns: The ECMAScript object.'''
63
63
  ...
64
64
 
65
65
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -164,9 +164,9 @@ class DocumentLoadErrorEvent(ErrorEvent):
164
164
  '''The :py:class:`aspose.html.dom.events.DocumentLoadErrorEvent` occurres when the requested resource is not available.'''
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 :py:class:`System.Type`.'''
169
+ :returns: The ECMAScript object.'''
170
170
  ...
171
171
 
172
172
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -279,9 +279,9 @@ class ErrorEvent(Event):
279
279
  '''The :py:class:`aspose.html.dom.events.ErrorEvent` provides contextual information about an errors that occurred during runtime.'''
280
280
 
281
281
  def get_platform_type(self) -> Type:
282
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
282
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
283
283
 
284
- :returns: The ECMAScript object :py:class:`System.Type`.'''
284
+ :returns: The ECMAScript object.'''
285
285
  ...
286
286
 
287
287
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -394,9 +394,9 @@ class Event(aspose.html.dom.DOMObject):
394
394
  '''The :py:class:`aspose.html.dom.events.Event` is used to provide contextual information about an event to the handler processing the event.'''
395
395
 
396
396
  def get_platform_type(self) -> Type:
397
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
397
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
398
398
 
399
- :returns: The ECMAScript object :py:class:`System.Type`.'''
399
+ :returns: The ECMAScript object.'''
400
400
  ...
401
401
 
402
402
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -487,9 +487,9 @@ class FocusEvent(UIEvent):
487
487
  '''The FocusEvent interface provides specific contextual information associated with Focus events.'''
488
488
 
489
489
  def get_platform_type(self) -> Type:
490
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
490
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
491
491
 
492
- :returns: The ECMAScript object :py:class:`System.Type`.'''
492
+ :returns: The ECMAScript object.'''
493
493
  ...
494
494
 
495
495
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -680,9 +680,9 @@ class InputEvent(UIEvent):
680
680
  '''Input events are sent as notifications whenever the DOM is being updated.'''
681
681
 
682
682
  def get_platform_type(self) -> Type:
683
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
683
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
684
684
 
685
- :returns: The ECMAScript object :py:class:`System.Type`.'''
685
+ :returns: The ECMAScript object.'''
686
686
  ...
687
687
 
688
688
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -793,9 +793,9 @@ class KeyboardEvent(UIEvent):
793
793
  '''The KeyboardEvent interface provides specific contextual information associated with keyboard devices. Each keyboard event references a key using a value. Keyboard events are commonly directed at the element that has the focus.'''
794
794
 
795
795
  def get_platform_type(self) -> Type:
796
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
796
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
797
797
 
798
- :returns: The ECMAScript object :py:class:`System.Type`.'''
798
+ :returns: The ECMAScript object.'''
799
799
  ...
800
800
 
801
801
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -961,9 +961,9 @@ class MouseEvent(UIEvent):
961
961
  '''The MouseEvent interface provides specific contextual information associated with Mouse events.'''
962
962
 
963
963
  def get_platform_type(self) -> Type:
964
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
964
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
965
965
 
966
- :returns: The ECMAScript object :py:class:`System.Type`.'''
966
+ :returns: The ECMAScript object.'''
967
967
  ...
968
968
 
969
969
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -1111,9 +1111,9 @@ class UIEvent(Event):
1111
1111
  '''The UIEvent interface provides specific contextual information associated with User Interface events.'''
1112
1112
 
1113
1113
  def get_platform_type(self) -> Type:
1114
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
1114
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
1115
1115
 
1116
- :returns: The ECMAScript object :py:class:`System.Type`.'''
1116
+ :returns: The ECMAScript object.'''
1117
1117
  ...
1118
1118
 
1119
1119
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -1215,9 +1215,9 @@ class WheelEvent(MouseEvent):
1215
1215
  '''The WheelEvent interface provides specific contextual information associated with wheel events. To create an instance of the WheelEvent interface, use the WheelEvent constructor, passing an optional WheelEventInit dictionary.'''
1216
1216
 
1217
1217
  def get_platform_type(self) -> Type:
1218
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
1218
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
1219
1219
 
1220
- :returns: The ECMAScript object :py:class:`System.Type`.'''
1220
+ :returns: The ECMAScript object.'''
1221
1221
  ...
1222
1222
 
1223
1223
  def init_event(self, type : str, bubbles : bool, cancelable : bool):
@@ -74,9 +74,9 @@ class MutationObserver(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 :py:class:`System.Type`.'''
79
+ :returns: The ECMAScript object.'''
80
80
  ...
81
81
 
82
82
  def disconnect(self):
@@ -212,9 +212,9 @@ class MutationRecord(aspose.html.dom.DOMObject):
212
212
  '''A MutationRecord represents an individual DOM mutation. It is the object that is passed to :py:class:`aspose.html.dom.mutations.MutationObserver`'s :py:class:`Aspose.Html.Dom.Mutations.MutationCallback`.'''
213
213
 
214
214
  def get_platform_type(self) -> Type:
215
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
215
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
216
216
 
217
- :returns: The ECMAScript object :py:class:`System.Type`.'''
217
+ :returns: The ECMAScript object.'''
218
218
  ...
219
219
 
220
220
  @property