PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocument Class / DrawString Method / DrawString(String,Font,Color,Rect,StringFormat) Method
String to draw.
Font object that defines the appearance and size of the drawn text.
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.
StringFormat object that specifies formatting attributes applied to the drawn text.

In This Topic
    DrawString(String,Font,Color,Rect,StringFormat) Method
    In This Topic
    Draws the specified text string in the specified rectangle with the specified Windows.UI.Xaml.Media.Brush and Font objects using the formatting attributes of the specified StringFormat object.
    Syntax
    'Declaration
     
    
    Public Overloads Function DrawString( _
       ByVal text As String, _
       ByVal font As Font, _
       ByVal color As Color, _
       ByVal rc As Rect, _
       ByVal sf As StringFormat _
    ) As Integer
    public int DrawString( 
       string text,
       Font font,
       Color color,
       Rect rc,
       StringFormat sf
    )

    Parameters

    text
    String to draw.
    font
    Font object that defines the appearance and size of the drawn text.
    color
    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.
    sf
    StringFormat object that specifies formatting attributes applied to the drawn text.

    Return Value

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