[]
        
(Showing Draft Content)

C1.C1Preview.C1PrintDocument.RenderInline

RenderInline Method

RenderInline(ParagraphObject, object, object, Style)

Renders a ParagraphObject into the current inline paragraph.

Declaration
public bool RenderInline(ParagraphObject po, object width, object height, Style style)
Parameters
Type Name Description
ParagraphObject po

The ParagraphObject object to add to the Content of the current inline paragraph.

object width

The paragraph width. Used only if this call begins a new paragraph (i.e. if there is no current one).

object height

The paragraph height. Used only if this call begins a new paragraph (i.e. if there is no current one).

Style style

The Style to apply to the specified ParagraphObject.

Returns
Type Description
bool

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).

See Also