RichTextBox for WPF | ComponentOne
C1.WPF.RichTextBox Namespace / IRichTextPainter Interface / PaintInline Method
A C1PaintingContext providing information for the current document section being painted.
The C1Line being painted.

In This Topic
    PaintInline Method (IRichTextPainter)
    In This Topic
    This method is called each time the C1RichTextViewManager paints a C1Line.
    Syntax
    'Declaration
     
    
    Sub PaintInline( _
       ByVal context As C1PaintingContext, _
       ByVal line As C1Line _
    ) 
    void PaintInline( 
       C1PaintingContext context,
       C1Line line
    )

    Parameters

    context
    A C1PaintingContext providing information for the current document section being painted.
    line
    The C1Line being painted.
    Remarks

    Any UIElement that is to be painted with the rich text inside the line is passed to C1PaintingContext.PaintInline. Note that each time this method is called, all UIElements must be painted by calling C1PaintingContext.PaintInline, otherwise they will be removed.

    See Also