[]
Renders a string into the current inline paragraph, using the specified style.
public bool RenderInlineText(string text, Style style)
Public Function RenderInlineText(text As String, style As Style) As Boolean
| 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)
Public Function RenderInlineText(text As String, font As Font, textColor As Color) As Boolean
| 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)
Public Function RenderInlineText(text As String, font As Font) As Boolean
| 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)
Public Function RenderInlineText(text As String, textColor As Color) As Boolean
| 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)
Public Function RenderInlineText(text As String, fontStyle As FontStyle) As Boolean
| 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)
Public Function RenderInlineText(text As String) As Boolean
| 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).