File tree Expand file tree Collapse file tree 36 files changed +81
-28
lines changed
aspose.html.rendering.doc/docdevice.docgraphiccontext
aspose.html.rendering.image/imagedevice.imagegraphiccontext
aspose.html.rendering.pdf/pdfdevice.pdfgraphiccontext
aspose.html.rendering.xps/xpsdevice.xpsgraphiccontext
aspose.html.rendering/graphiccontext
python-net/aspose.html.rendering/graphiccontext Expand file tree Collapse file tree 36 files changed +81
-28
lines changed Original file line number Diff line number Diff 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 / ) { get ; set ; } | Sets or gets the brush object that is used to fill the interiors of paths . |
2930| virtual [Font ](.. / .. / aspose .html .rendering / graphiccontext / font / ) { get ; set ; } | Sets or gets the true type font object that is used for rendering text . |
3031| virtual [FontSize ](.. / .. / aspose .html .rendering / graphiccontext / fontsize / ) { get ; set ; } | Sets or gets text font size . |
Original file line number Diff line number Diff 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 / ) { get ; set ; } | Sets or gets the brush object that is used to fill the interiors of paths . |
2930| virtual [Font ](.. / .. / aspose .html .rendering / graphiccontext / font / ) { get ; set ; } | Sets or gets the true type font object that is used for rendering text . |
3031| virtual [FontSize ](.. / .. / aspose .html .rendering / graphiccontext / fontsize / ) { get ; set ; } | Sets or gets text font size . |
Original file line number Diff line number Diff 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 / ) { get ; set ; } | Sets or gets the brush object that is used to fill the interiors of paths . |
2930| virtual [Font ](.. / .. / aspose .html .rendering / graphiccontext / font / ) { get ; set ; } | Sets or gets the true type font object that is used for rendering text . |
3031| virtual [FontSize ](.. / .. / aspose .html .rendering / graphiccontext / fontsize / ) { get ; set ; } | Sets or gets text font size . |
Original file line number Diff line number Diff 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 / ) { get ; set ; } | Sets or gets the brush object that is used to fill the interiors of paths . |
2930| virtual [Font ](.. / .. / aspose .html .rendering / graphiccontext / font / ) { get ; set ; } | Sets or gets the true type font object that is used for rendering text . |
3031| virtual [FontSize ](.. / .. / aspose .html .rendering / graphiccontext / fontsize / ) { get ; set ; } | Sets or gets text font size . |
Original file line number Diff line number Diff 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 / ) { get ; set ; } | Sets or gets the brush object that is used to fill the interiors of paths . |
2930| virtual [Font ](.. / .. / aspose .html .rendering / graphiccontext / font / ) { get ; set ; } | Sets or gets the true type font object that is used for rendering text . |
3031| virtual [FontSize ](.. / .. / aspose .html .rendering / graphiccontext / fontsize / ) { get ; set ; } | Sets or gets text font size . |
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: GraphicContext.Clone
33second_title : Aspose.HTML for .NET API Reference
44description : GraphicContext Clone method. Creates a new instance of a GraphicContext class with the same property values as an existing instance
55type : docs
6- weight : 160
6+ weight : 170
77url : /net/aspose.html.rendering/graphiccontext/clone/
88---
99## GraphicContext.Clone method
Original file line number Diff line number Diff line change 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] ( ../../../ )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: GraphicContext.FillBrush
33second_title : Aspose.HTML for .NET API Reference
44description : GraphicContext FillBrush property. Sets or gets the brush object that is used to fill the interiors of paths
55type : docs
6- weight : 30
6+ weight : 40
77url : /net/aspose.html.rendering/graphiccontext/fillbrush/
88---
99## GraphicContext.FillBrush property
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: GraphicContext.Font
33second_title : Aspose.HTML for .NET API Reference
44description : GraphicContext Font property. Sets or gets the true type font object that is used for rendering text
55type : docs
6- weight : 40
6+ weight : 50
77url : /net/aspose.html.rendering/graphiccontext/font/
88---
99## GraphicContext.Font property
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: GraphicContext.FontSize
33second_title : Aspose.HTML for .NET API Reference
44description : GraphicContext FontSize property. Sets or gets text font size
55type : docs
6- weight : 50
6+ weight : 60
77url : /net/aspose.html.rendering/graphiccontext/fontsize/
88---
99## GraphicContext.FontSize property
You can’t perform that action at this time.
0 commit comments