ComponentOne PDF for .NET
C1.C1Pdf Namespace / C1PdfDocument Class / DrawString Method / DrawString(String,Font,Color,RectangleF,Int32,StringFormat,Single) Method
The string to draw.
The System.Drawing.Font used to draw the text.
The text color.
The rectangle specifying the location of the text, in points from the top left corner of the page.
The index of the first character that will be rendered.
The System.Drawing.StringFormat object specifying the formatting attributes applied to the text.
The width coefficient applied to characters. The default is 1.0, use 2.0 for double width and so on.

In This Topic
    DrawString(String,Font,Color,RectangleF,Int32,StringFormat,Single) Method
    In This Topic
    Draws the specified text string in the specified rectangle, with the specified System.Drawing.Brush and System.Drawing.Font, using the formatting attributes of the specified System.Drawing.StringFormat object and specified character width coefficient.
    Syntax
    'Declaration
     
    
    Public Overloads Function DrawString( _
       ByVal text As String, _
       ByVal font As Font, _
       ByVal color As Color, _
       ByVal rc As RectangleF, _
       ByVal firstChar As Integer, _
       ByVal sf As StringFormat, _
       ByVal widthCoeff As Single _
    ) As Integer

    Parameters

    text
    The string to draw.
    font
    The System.Drawing.Font used to draw the text.
    color
    The text color.
    rc
    The rectangle specifying the location of the text, in points from the top left corner of the page.
    firstChar
    The index of the first character that will be rendered.
    sf
    The System.Drawing.StringFormat object specifying the formatting attributes applied to the text.
    widthCoeff
    The width coefficient applied to characters. The default is 1.0, use 2.0 for double width and so on.

    Return Value

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