Skip to content

Commit a40c378

Browse files
Prepared the Aspose.HTML 25.9 release
1 parent 0b96cc3 commit a40c378

File tree

36 files changed

+81
-28
lines changed

36 files changed

+81
-28
lines changed

english/net/aspose.html.rendering.doc/docdevice.docgraphiccontext/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class DocGraphicContext : GraphicContext
2525
| Name | Description |
2626
| --- | --- |
2727
| virtual [CharacterSpacing](../../aspose.html.rendering/graphiccontext/characterspacing/) { get; set; } | Sets or gets character spacing. |
28+
| [CurrentElement](../../aspose.html.rendering/graphiccontext/currentelement/) { get; } | Gets current processed element. |
2829
| virtual [FillBrush](../../aspose.html.rendering/graphiccontext/fillbrush/) { getset; } | Sets or gets the brush object that is used to fill the interiors of paths. |
2930
| virtual [Font](../../aspose.html.rendering/graphiccontext/font/) { getset; } | Sets or gets the true type font object that is used for rendering text. |
3031
| virtual [FontSize](../../aspose.html.rendering/graphiccontext/fontsize/) { getset; } | Sets or gets text font size. |

english/net/aspose.html.rendering.image/imagedevice.imagegraphiccontext/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class ImageGraphicContext : GraphicContext
2525
| Name | Description |
2626
| --- | --- |
2727
| virtual [CharacterSpacing](../../aspose.html.rendering/graphiccontext/characterspacing/) { get; set; } | Sets or gets character spacing. |
28+
| [CurrentElement](../../aspose.html.rendering/graphiccontext/currentelement/) { get; } | Gets current processed element. |
2829
| virtual [FillBrush](../../aspose.html.rendering/graphiccontext/fillbrush/) { getset; } | Sets or gets the brush object that is used to fill the interiors of paths. |
2930
| virtual [Font](../../aspose.html.rendering/graphiccontext/font/) { getset; } | Sets or gets the true type font object that is used for rendering text. |
3031
| virtual [FontSize](../../aspose.html.rendering/graphiccontext/fontsize/) { getset; } | Sets or gets text font size. |

english/net/aspose.html.rendering.pdf/pdfdevice.pdfgraphiccontext/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class PdfGraphicContext : GraphicContext
2525
| Name | Description |
2626
| --- | --- |
2727
| virtual [CharacterSpacing](../../aspose.html.rendering/graphiccontext/characterspacing/) { get; set; } | Sets or gets character spacing. |
28+
| [CurrentElement](../../aspose.html.rendering/graphiccontext/currentelement/) { get; } | Gets current processed element. |
2829
| virtual [FillBrush](../../aspose.html.rendering/graphiccontext/fillbrush/) { getset; } | Sets or gets the brush object that is used to fill the interiors of paths. |
2930
| virtual [Font](../../aspose.html.rendering/graphiccontext/font/) { getset; } | Sets or gets the true type font object that is used for rendering text. |
3031
| virtual [FontSize](../../aspose.html.rendering/graphiccontext/fontsize/) { getset; } | Sets or gets text font size. |

english/net/aspose.html.rendering.xps/xpsdevice.xpsgraphiccontext/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class XpsGraphicContext : GraphicContext
2525
| Name | Description |
2626
| --- | --- |
2727
| virtual [CharacterSpacing](../../aspose.html.rendering/graphiccontext/characterspacing/) { get; set; } | Sets or gets character spacing. |
28+
| [CurrentElement](../../aspose.html.rendering/graphiccontext/currentelement/) { get; } | Gets current processed element. |
2829
| virtual [FillBrush](../../aspose.html.rendering/graphiccontext/fillbrush/) { getset; } | Sets or gets the brush object that is used to fill the interiors of paths. |
2930
| virtual [Font](../../aspose.html.rendering/graphiccontext/font/) { getset; } | Sets or gets the true type font object that is used for rendering text. |
3031
| virtual [FontSize](../../aspose.html.rendering/graphiccontext/fontsize/) { getset; } | Sets or gets text font size. |

english/net/aspose.html.rendering/graphiccontext/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public class GraphicContext : ICloneable
2525
| Name | Description |
2626
| --- | --- |
2727
| virtual [CharacterSpacing](../../aspose.html.rendering/graphiccontext/characterspacing/) { get; set; } | Sets or gets character spacing. |
28+
| [CurrentElement](../../aspose.html.rendering/graphiccontext/currentelement/) { get; } | Gets current processed element. |
2829
| virtual [FillBrush](../../aspose.html.rendering/graphiccontext/fillbrush/) { getset; } | Sets or gets the brush object that is used to fill the interiors of paths. |
2930
| virtual [Font](../../aspose.html.rendering/graphiccontext/font/) { getset; } | Sets or gets the true type font object that is used for rendering text. |
3031
| virtual [FontSize](../../aspose.html.rendering/graphiccontext/fontsize/) { getset; } | Sets or gets text font size. |

english/net/aspose.html.rendering/graphiccontext/clone/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: GraphicContext.Clone
33
second_title: Aspose.HTML for .NET API Reference
44
description: GraphicContext Clone method. Creates a new instance of a GraphicContext class with the same property values as an existing instance
55
type: docs
6-
weight: 160
6+
weight: 170
77
url: /net/aspose.html.rendering/graphiccontext/clone/
88
---
99
## GraphicContext.Clone method
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: GraphicContext.CurrentElement
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: GraphicContext CurrentElement property. Gets current processed element
5+
type: docs
6+
weight: 30
7+
url: /net/aspose.html.rendering/graphiccontext/currentelement/
8+
---
9+
## GraphicContext.CurrentElement property
10+
11+
Gets current processed element.
12+
13+
```csharp
14+
public Element CurrentElement { get; }
15+
```
16+
17+
### See Also
18+
19+
* class [Element](../../../aspose.html.dom/element/)
20+
* class [GraphicContext](../)
21+
* namespace [Aspose.Html.Rendering](../../../aspose.html.rendering/)
22+
* assembly [Aspose.HTML](../../../)

english/net/aspose.html.rendering/graphiccontext/fillbrush/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: GraphicContext.FillBrush
33
second_title: Aspose.HTML for .NET API Reference
44
description: GraphicContext FillBrush property. Sets or gets the brush object that is used to fill the interiors of paths
55
type: docs
6-
weight: 30
6+
weight: 40
77
url: /net/aspose.html.rendering/graphiccontext/fillbrush/
88
---
99
## GraphicContext.FillBrush property

english/net/aspose.html.rendering/graphiccontext/font/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: GraphicContext.Font
33
second_title: Aspose.HTML for .NET API Reference
44
description: GraphicContext Font property. Sets or gets the true type font object that is used for rendering text
55
type: docs
6-
weight: 40
6+
weight: 50
77
url: /net/aspose.html.rendering/graphiccontext/font/
88
---
99
## GraphicContext.Font property

english/net/aspose.html.rendering/graphiccontext/fontsize/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: GraphicContext.FontSize
33
second_title: Aspose.HTML for .NET API Reference
44
description: GraphicContext FontSize property. Sets or gets text font size
55
type: docs
6-
weight: 50
6+
weight: 60
77
url: /net/aspose.html.rendering/graphiccontext/fontsize/
88
---
99
## GraphicContext.FontSize property

0 commit comments

Comments
 (0)