ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Direct2D Namespace / RenderTarget Class / DrawTextLayout Method / DrawTextLayout(Point2F,TextLayout,Brush) Method
The point, described in device-independent pixels, at which the upper-left corner of the text described by textLayout is drawn.
The formatted text to draw. Any drawing effects that do not inherit from C1.Win.DX.Direct2D.Resource are ignored. If there are drawing effects that inherit from ID2D1Resource that are not brushes, this method fails and the render target is put in an error state.
The brush used to paint any text in textLayout that does not already have a brush associated with it as a drawing effect (specified by the C1.Win.DX.DirectWrite.TextLayout.SetDrawingEffect(C1.Win.DX.ComObject,C1.Win.DX.DirectWrite.TextRange) method).

In This Topic
    DrawTextLayout(Point2F,TextLayout,Brush) Method
    In This Topic
    Draws the formatted text described by the specified C1.Win.DX.DirectWrite.TextLayout object.
    Syntax
    'Declaration
     
    Public Overloads Sub DrawTextLayout( _
       ByVal origin As Point2F, _
       ByVal textLayout As TextLayout, _
       ByVal defaultForegroundBrush As Brush _
    ) 
    public void DrawTextLayout( 
       Point2F origin,
       TextLayout textLayout,
       Brush defaultForegroundBrush
    )

    Parameters

    origin
    The point, described in device-independent pixels, at which the upper-left corner of the text described by textLayout is drawn.
    textLayout
    The formatted text to draw. Any drawing effects that do not inherit from C1.Win.DX.Direct2D.Resource are ignored. If there are drawing effects that inherit from ID2D1Resource that are not brushes, this method fails and the render target is put in an error state.
    defaultForegroundBrush
    The brush used to paint any text in textLayout that does not already have a brush associated with it as a drawing effect (specified by the C1.Win.DX.DirectWrite.TextLayout.SetDrawingEffect(C1.Win.DX.ComObject,C1.Win.DX.DirectWrite.TextRange) method).
    See Also