ComponentOne PDF for .NET
C1.C1Pdf Namespace / C1PdfDocument Class / DrawString Method / DrawString(String,Font,Color,PointF,Single) Method
String to draw.
System.Drawing.Font object that defines the appearance and size of the drawn text.
The object that defines the color of the drawn text.
The point structure that specifies the location of the drawn text, in points from the top left corner of the page.
The width coefficient of text characters, by default 1.0, for double width 2.0..

In This Topic
    DrawString(String,Font,Color,PointF,Single) Method
    In This Topic
    Draws the specified text string at the specified point with the specified System.Drawing.Brush, System.Drawing.Font objects and specified width coefficient of text characters.
    Syntax
    'Declaration
     
    
    Public Overloads Function DrawString( _
       ByVal text As String, _
       ByVal font As Font, _
       ByVal color As Color, _
       ByVal pt As PointF, _
       Optional ByVal widthCoeff As Single _
    ) As Integer
    public int DrawString( 
       string text,
       Font font,
       Color color,
       PointF pt,
       float widthCoeff
    )

    Parameters

    text
    String to draw.
    font
    System.Drawing.Font object that defines the appearance and size of the drawn text.
    color
    The object that defines the color of the drawn text.
    pt
    The point structure that specifies the location of the drawn text, in points from the top left corner of the page.
    widthCoeff
    The width coefficient of text characters, by default 1.0, for double width 2.0..

    Return Value

    The index of first character that was not printed because it did not fit in the specified rectangle.
    See Also