[]
Initializes a new instance of the RenderParagraph class.
public RenderParagraph()
Public Sub New()
Initializes a new instance of the RenderParagraph class, specifying a Style to use.
public RenderParagraph(Style style)
Public Sub New(style As Style)
| Type | Name | Description |
|---|---|---|
| Style | style | A Style to use (the AssignNonInheritedFrom(Style) method is used to copy the specified style to the current object's Style). |
Initializes a new instance of the RenderParagraph class, specifying a Font to use.
public RenderParagraph(Font font)
Public Sub New(font As Font)
| Type | Name | Description |
|---|---|---|
| Font | font | The default font for the current paragraph. |
Initializes a new instance of the RenderParagraph class, specifying the default font and text color.
public RenderParagraph(Font font, Color textColor)
Public Sub New(font As Font, textColor As Color)
| Type | Name | Description |
|---|---|---|
| Font | font | The default font for the current paragraph. |
| Color | textColor | The default text color for the current paragraph. |
Initializes a new instance of the RenderParagraph class, specifying the default font, text color and horizontal alignment.
public RenderParagraph(Font font, Color textColor, AlignHorzEnum horzAlign)
Public Sub New(font As Font, textColor As Color, horzAlign As AlignHorzEnum)
| Type | Name | Description |
|---|---|---|
| Font | font | The default font for the current paragraph. |
| Color | textColor | The default text color for the current paragraph. |
| AlignHorzEnum | horzAlign | The horizontal alignment for the current paragraph. |
Initializes a new instance of the RenderParagraph class, specifying the default font and horizontal alignment.
public RenderParagraph(Font font, AlignHorzEnum horzAlign)
Public Sub New(font As Font, horzAlign As AlignHorzEnum)
| Type | Name | Description |
|---|---|---|
| Font | font | The default font for the current paragraph. |
| AlignHorzEnum | horzAlign | The horizontal alignment for the current paragraph. |
Initializes a new instance of the RenderParagraph class, specifying the horizontal alignment.
public RenderParagraph(AlignHorzEnum horzAlign)
Public Sub New(horzAlign As AlignHorzEnum)
| Type | Name | Description |
|---|---|---|
| AlignHorzEnum | horzAlign | The horizontal alignment for the current paragraph. |