Renders a ParagraphObject into the current inline paragraph.
Namespace:
C1.C1PreviewAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
C# |
---|
public bool RenderInline( ParagraphObject po, Object width, Object height, Style style ) |
Visual Basic |
---|
Public Function RenderInline ( _ po As ParagraphObject, _ width As Object, _ height As Object, _ style As Style _ ) As Boolean |
Parameters
- po
- Type: C1.C1Preview..::..ParagraphObject
The ParagraphObject object to add to the Content of the current inline paragraph.
- width
- Type: System..::..Object
The paragraph width. Used only if this call begins a new paragraph (i.e. if there is no current one).
- height
- Type: System..::..Object
The paragraph height. Used only if this call begins a new paragraph (i.e. if there is no current one).
- style
- Type: C1.C1Preview..::..Style
The Style to apply to the specified ParagraphObject.
Return Value
true if no warnings were generated by this call, false otherwise.Remarks
This method adds the specified ParagraphObject 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).