[]
Initializes a new instance of the RenderParagraph class.
public RenderParagraph()
Initializes a new instance of the RenderParagraph class, specifying a Style to use.
public RenderParagraph(Style 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)
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)
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)
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)
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)
Type | Name | Description |
---|---|---|
AlignHorzEnum | horzAlign | The horizontal alignment for the current paragraph. |