VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / GraphicsPathBase Class / AddString(String,IDrawingFont,PointF,Single) Method
Syntax Requirements SeeAlso
In This Topic
    AddString(String,IDrawingFont,PointF,Single) Method (GraphicsPathBase)
    In This Topic
    Adds a text string to this path.
    Syntax
    'Declaration
    
    Public Sub AddString( _
    ByVal text
    The text to add.
    As System.String, _
    ByVal font
    The font, which should be used for adding text.
    As IDrawingFont, _
    ByVal origin
    A System.Drawing.PointF that represents the point where the text starts.
    As System.Drawing.PointF, _
    ByVal characterSpacing
    The character spacing.
    As Single _
    )
    public void AddString(
    System.String text,
    IDrawingFont font,
    System.Drawing.PointF origin,
    float characterSpacing
    )
    public: void AddString(
    System.String text,
    IDrawingFont* font,
    System.Drawing.PointF origin,
    float characterSpacing
    )
    public:
    void AddString(
    System.String text,
    IDrawingFont^ font,
    System.Drawing.PointF origin,
    float characterSpacing
    )

    Parameters

    text
    The text to add.
    font
    The font, which should be used for adding text.
    origin
    A System.Drawing.PointF that represents the point where the text starts.
    characterSpacing
    The character spacing.
    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