PrintDocument for WinForms | ComponentOne
C1.PrintDocument.4.5.2 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 (C1PrintDocument)
    In This Topic
    Renders a ParagraphObject into the current inline paragraph.
    Syntax
    'Declaration
     
    Public Function RenderInline( _
       ByVal po As ParagraphObject, _
       ByVal width As Object, _
       ByVal height As Object, _
       ByVal style As Style _
    ) As Boolean
    public bool RenderInline( 
       ParagraphObject po,
       object width,
       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