Click or drag to resize
ICanvasTextRendererDrawInlineObject Method
Signals to the app that it should draw an inline object.

Namespace:  Microsoft.Graphics.Canvas.Text
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
void DrawInlineObject(
	Vector2 point,
	ICanvasTextInlineObject inlineObject,
	bool isSideways,
	bool isRightToLeft,
	Object brush,
	CanvasGlyphOrientation glyphOrientation
)

Parameters

point
Type: System.NumericsVector2
inlineObject
Type: Microsoft.Graphics.Canvas.TextICanvasTextInlineObject
isSideways
Type: SystemBoolean
isRightToLeft
Type: SystemBoolean
brush
Type: SystemObject
glyphOrientation
Type: Microsoft.Graphics.Canvas.TextCanvasGlyphOrientation
Remarks

A custom text renderer's DrawInlineObject method is only called for inline objects which implement ICanvasTextInlineObject.

See Also