This method is called each time the C1RichTextViewManager paints a C1Line.

Namespace:  C1.Silverlight.RichTextBox
Assembly:  C1.Silverlight.RichTextBox (in C1.Silverlight.RichTextBox.dll)

Syntax

C#
void PaintInline(
	C1PaintingContext context,
	C1Line line
)
Visual Basic
Sub PaintInline ( _
	context As C1PaintingContext, _
	line As C1Line _
)

Parameters

context
Type: C1.Silverlight.RichTextBox..::..C1PaintingContext
A C1PaintingContext providing information for the current document section being painted.
line
Type: C1.Silverlight.RichTextBox..::..C1Line
The C1Line being painted.

Remarks

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

See Also