VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / IDrawingFont Interface / DrawString Methods / DrawString(DrawingEngine,String,IDrawingBrush,PointF) Method
Syntax Requirements SeeAlso
In This Topic
    DrawString(DrawingEngine,String,IDrawingBrush,PointF) Method (IDrawingFont)
    In This Topic
    Draws the specified text string on specified DrawingEngine at the specified location using the specified IDrawingBrush object.
    Syntax
    'Declaration
    
    Public Overloads Sub DrawString( _
    ByVal drawingEngine
    The drawing engine.
    As DrawingEngine, _
    ByVal text
    A string to draw.
    As System.String, _
    ByVal brush
    The brush, which should be used for drawing text.
    As IDrawingBrush, _
    ByVal point
    The upper-left corner of the drawn text.
    As System.Drawing.PointF _
    )
    public void DrawString(
    DrawingEngine drawingEngine,
    System.String text,
    IDrawingBrush brush,
    System.Drawing.PointF point
    )
    public: void DrawString(
    DrawingEngine* drawingEngine,
    System.String text,
    IDrawingBrush* brush,
    System.Drawing.PointF point
    )
    public:
    void DrawString(
    DrawingEngine^ drawingEngine,
    System.String text,
    IDrawingBrush^ brush,
    System.Drawing.PointF point
    )

    Parameters

    drawingEngine
    The drawing engine.
    text
    A string to draw.
    brush
    The brush, which should be used for drawing text.
    point
    The upper-left corner of the drawn text.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also