ComponentOne PDF for .NET
C1.C1Pdf Namespace / C1PdfDocument Class / DrawString Method / DrawString(String,Font,Brush,RectangleF,Int32) 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 rectangle structure that specifies the location of the drawn text, in points from the top left corner of the page.
Index of the first character that will be rendered.

In This Topic
    DrawString(String,Font,Brush,RectangleF,Int32) Method
    In This Topic
    Draws the specified text string in the specified rectangle with the specified System.Drawing.Brush and System.Drawing.Font objects using the formatting attributes of the specified System.Drawing.StringFormat object.
    Syntax
    'Declaration
     
    
    Public Overloads Function DrawString( _
       ByVal text As String, _
       ByVal font As Font, _
       ByVal brush As Brush, _
       ByVal rc As RectangleF, _
       ByVal firstChar As Integer _
    ) As Integer
    public int DrawString( 
       string text,
       Font font,
       Brush brush,
       RectangleF rc,
       int firstChar
    )

    Parameters

    text
    String to draw.
    font
    System.Drawing.Font object that defines the appearance and size of the drawn text.
    brush
    The object that defines the color of the drawn text.
    rc
    The rectangle structure that specifies the location of the drawn text, in points from the top left corner of the page.
    firstChar
    Index of the first character that will be rendered.

    Return Value

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