WebPlanner Programmer's Guide

IGraphics.DrawString Method (String, Font, Brush, PointF)

See Also
 


Draws the specified text string at the specified location with the specified Brush and Font objects.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

public abstract void DrawString (
    string s,
    Font font,
    Brush brush,
    PointF point
)

Visual Basic  Copy Code

Public MustOverride Sub DrawString ( _
    s As String, _
    font As Font, _
    brush As Brush, _
    point As PointF _
)

 Parameters

s
The string to draw.
font
A .NET Font object that defines the text format of the string.
brush
A .NET Brush object that determines the color and texture of the drawn text.
point
A .NET PointF structure that specifies the upper-left corner of the drawn text.

 See Also