Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcGraphicsExt Class / DrawTextBox Method / DrawTextBox(GcGraphics,RectangleF,String,Boolean,Font,Single,Color,Color,Border,VariableTextJustification,Boolean,Single) Method
The graphics to draw on.
The control bounds.
The control text.
Indicates whether the control is multi-line.
The font.
The font size.
The fore color.
The background color.
The border definition.
The text justification.
Indicates whether to draw the border in red, ignoring the color specified in border.
The rotation angle, should be a multiple of 90.

In This Topic
    DrawTextBox(GcGraphics,RectangleF,String,Boolean,Font,Single,Color,Color,Border,VariableTextJustification,Boolean,Single) Method
    In This Topic
    Draws a text box.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub DrawTextBox( _
       ByVal g As GcGraphics, _
       ByVal bounds As System.Drawing.RectangleF, _
       ByVal text As System.String, _
       ByVal multiLine As System.Boolean, _
       ByVal font As Font, _
       ByVal fontSize As System.Single, _
       ByVal foreColor As System.Drawing.Color, _
       ByVal backColor As System.Drawing.Color, _
       ByVal border As Border, _
       ByVal justification As VariableTextJustification, _
       ByVal required As System.Boolean, _
       ByVal orientation As System.Single _
    ) 
    public static void DrawTextBox( 
       GcGraphics g,
       System.Drawing.RectangleF bounds,
       System.string text,
       System.bool multiLine,
       Font font,
       System.float fontSize,
       System.Drawing.Color foreColor,
       System.Drawing.Color backColor,
       Border border,
       VariableTextJustification justification,
       System.bool required,
       System.float orientation
    )

    Parameters

    g
    The graphics to draw on.
    bounds
    The control bounds.
    text
    The control text.
    multiLine
    Indicates whether the control is multi-line.
    font
    The font.
    fontSize
    The font size.
    foreColor
    The fore color.
    backColor
    The background color.
    border
    The border definition.
    justification
    The text justification.
    required
    Indicates whether to draw the border in red, ignoring the color specified in border.
    orientation
    The rotation angle, should be a multiple of 90.
    See Also