[]
Renders the RTF text.
public bool RenderBlockRichText(string rtf, object width, object height, Style style)
Type | Name | Description |
---|---|---|
string | rtf | Text to render, can be plain text. |
object | width | If null then parent width will be used. |
object | height | If null then autoheight will be used. |
Style | style | Style of object. |
Type | Description |
---|---|
bool | Returns true if no warnings occur during rendering the object. |
Renders the RTF text with autoheight.
public bool RenderBlockRichText(string rtf, object width)
Type | Name | Description |
---|---|---|
string | rtf | Text to render, can be plain text. |
object | width | If null then parent width will be used. |
Type | Description |
---|---|
bool | Returns true if no warnings occur during rendering the object. |
Renders the RTF text with parent width and autoheight.
public bool RenderBlockRichText(string rtf)
Type | Name | Description |
---|---|---|
string | rtf | Text to render, can be plain text. |
Type | Description |
---|---|
bool | Returns true if no warnings occur during rendering the object. |