[]
Renders a string into the current inline paragraph, using the specified style.
public bool RenderInlineText(string text, Style style)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
Style | style | The Style to apply to the specified text. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object with the specified style, and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).
Renders a string into the current inline paragraph, using the specified font and text color.
public bool RenderInlineText(string text, Font font, Color textColor)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
Font | font | The font to use for the specified text. |
Color | textColor | The text color to use. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object with the specified font and color, and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).
Renders a string into the current inline paragraph, using the specified font.
public bool RenderInlineText(string text, Font font)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
Font | font | The font to use for the specified text. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object with the specified font, and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).
Renders a string into the current inline paragraph, using the specified text color.
public bool RenderInlineText(string text, Color textColor)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
Color | textColor | The text color to use. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object with the specified text color, and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).
Renders a string into the current inline paragraph, using the specified font style.
public bool RenderInlineText(string text, FontStyle fontStyle)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
FontStyle | fontStyle | The FontStyle to use for the text. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object with the specified font style, and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).
Renders a string into the current inline paragraph.
public bool RenderInlineText(string text)
Type | Name | Description |
---|---|---|
string | text | The string to add to the Content of the current inline paragraph. |
Type | Description |
---|---|
bool | true if no warnings were generated by this call, false otherwise. |
This method creates a new ParagraphText object and adds it to the current internally maintained RenderParagraph object. A new paragraph is started if there is no current one.
This method can only be used between calls to StartDoc() and EndDoc() methods on the current document. For details, see RenderBlock(RenderObject).