ComponentOne ReportViewer for ASP.NET Web Forms
C1.C1Report.4 Assembly / C1.C1Preview Namespace / C1PrintDocument Class / RenderInline Method
The ParagraphObject object to add to the Content of the current inline paragraph.
The paragraph width. Used only if this call begins a new paragraph (i.e. if there is no current one).
The paragraph height. Used only if this call begins a new paragraph (i.e. if there is no current one).
The Style to apply to the specified ParagraphObject.

In This Topic
    RenderInline Method
    In This Topic
    Renders a ParagraphObject into the current inline paragraph.
    Syntax
    'Declaration
     
    Public Function RenderInline( _
       ByVal po As ParagraphObject, _
       ByVal width As System.Object, _
       ByVal height As System.Object, _
       ByVal style As Style _
    ) As System.Boolean
    public System.bool RenderInline( 
       ParagraphObject po,
       System.object width,
       System.object height,
       Style style
    )

    Parameters

    po
    The ParagraphObject object to add to the Content of the current inline paragraph.
    width
    The paragraph width. Used only if this call begins a new paragraph (i.e. if there is no current one).
    height
    The paragraph height. Used only if this call begins a new paragraph (i.e. if there is no current one).
    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.

    See Also