VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / DrawingEngine Class / DrawString Methods / DrawString(DrawingString,IDrawingFont,IDrawingBrush,PointF) Method
Syntax Requirements SeeAlso
In This Topic
    DrawString(DrawingString,IDrawingFont,IDrawingBrush,PointF) Method (DrawingEngine)
    In This Topic
    Draws the specified drawing string at the specified location using the specified IDrawingBrush and IDrawingFont objects.
    Syntax
    'Declaration
    
    Public Overloads Overridable Sub DrawString( _
    ByVal text
    A string in Unicode encoding to draw.
    As DrawingString, _
    ByVal font
    The font, which should be used for drawing text.
    As IDrawingFont, _
    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 virtual void DrawString(
    DrawingString text,
    IDrawingFont font,
    IDrawingBrush brush,
    System.Drawing.PointF point
    )
    public: virtual void DrawString(
    DrawingString* text,
    IDrawingFont* font,
    IDrawingBrush* brush,
    System.Drawing.PointF point
    )
    public:
    virtual void DrawString(
    DrawingString^ text,
    IDrawingFont^ font,
    IDrawingBrush^ brush,
    System.Drawing.PointF point
    )

    Parameters

    text
    A string in Unicode encoding to draw.
    font
    The font, which should be used for drawing text.
    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