Method DrawTextLayout
- Namespace
- PaintDotNet.Direct2D1
- Assembly
- PaintDotNet.Windows.dll
DrawTextLayout(Point2Float, ITextLayout, IDeviceBrush, DrawTextOptions)
Draws a text layout object. If the layout is not subsequently changed, this can be more efficient than DrawText when drawing the same layout repeatedly.
void DrawTextLayout(Point2Float origin, ITextLayout textLayout, IDeviceBrush defaultFillBrush, DrawTextOptions options = DrawTextOptions.EnableColorFont)
Parameters
originPoint2FloatThe point, described in device-independent pixels, at which the upper-left corner of the text described by textLayout is drawn.
textLayoutITextLayoutThe formatted text to draw. Any drawing effects that do not inherit from ID2D1Resource are ignored. If there are drawing effects that inherit from ID2D1Resource that are not brushes, this method fails and the device context is put in an error state.
defaultFillBrushIDeviceBrushThe brush used to paint the text.
optionsDrawTextOptionsA value that indicates whether the text should be snapped to pixel boundaries and whether the text should be clipped to the layout rectangle.
DrawTextLayout(Point2Float, ITextLayout, IDeviceBrush?, ISvgGlyphStyle?, int, DrawTextOptions)
Draws a text layout object. If the layout is not subsequently changed, this can be more efficient than DrawText when drawing the same layout repeatedly.
void DrawTextLayout(Point2Float origin, ITextLayout textLayout, IDeviceBrush? defaultFillBrush, ISvgGlyphStyle? svgGlyphStyle, int colorPaletteIndex = 0, DrawTextOptions options = DrawTextOptions.EnableColorFont)
Parameters
originPoint2FloatThe point, described in device-independent pixels, at which the upper-left corner of the text described by textLayout is drawn.
textLayoutITextLayoutThe formatted text to draw. Any drawing effects that do not inherit from ID2D1Resource are ignored. If there are drawing effects that inherit from ID2D1Resource that are not brushes, this method fails and the device context is put in an error state.
defaultFillBrushIDeviceBrushThe brush used to paint the text.
svgGlyphStyleISvgGlyphStyleThe values for context-fill, context-stroke, and context-value that are used when rendering SVG glyphs.
colorPaletteIndexintThe index used to select a color palette within a color font.
optionsDrawTextOptionsA value that indicates whether the text should be snapped to pixel boundaries and whether the text should be clipped to the layout rectangle.