[]
Initializes a new instance of the HtmlElement class with the specified htm content and style options.
public HtmlElement(Style style, string html, bool rtl, int width)
Public Sub New(style As Style, html As String, rtl As Boolean, width As Integer)
| Type | Name | Description |
|---|---|---|
| Style | style | The Style object to use. |
| string | html | The string value with html content. |
| bool | rtl | True to use right-to-left flow direction. |
| int | width | The int value of the width of html content. |
Initializes a new instance of the HtmlElement class with the specified htm content and style options.
public HtmlElement(Style style, string html, bool rtl)
Public Sub New(style As Style, html As String, rtl As Boolean)
| Type | Name | Description |
|---|---|---|
| Style | style | The Style object to use. |
| string | html | The string value with html content. |
| bool | rtl | True to use right-to-left flow direction. |
Initializes a new instance of the HtmlElement class with the specified htm content.
public HtmlElement(string html, bool rtl)
Public Sub New(html As String, rtl As Boolean)
| Type | Name | Description |
|---|---|---|
| string | html | The string value with html content. |
| bool | rtl | True to use right-to-left flow direction. |
Initializes a new instance of the HtmlElement class with the specified style options.
public HtmlElement(Style style, bool rtl)
Public Sub New(style As Style, rtl As Boolean)
| Type | Name | Description |
|---|---|---|
| Style | style | The Style object to use. |
| bool | rtl | True to use right-to-left flow direction. |
Initializes a new instance of the HtmlElement class.
public HtmlElement(bool rtl)
Public Sub New(rtl As Boolean)
| Type | Name | Description |
|---|---|---|
| bool | rtl | True to use right-to-left flow direction. |