Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcGraphicsExt Class / DrawComboBox Method / DrawComboBox(GcGraphics,RectangleF,String,TextFormat,Color,Border,Boolean,Single,Boolean) Method
The graphics to draw on.
The control bounds.
The control text.
The text format to use.
The background color.
The border definition.
Indicates whether to draw the border in red, ignoring the color specified in border.
The rotation angle, should be a multiple of 90.
Indicates whether to draw drop-down button.

In This Topic
    DrawComboBox(GcGraphics,RectangleF,String,TextFormat,Color,Border,Boolean,Single,Boolean) Method
    In This Topic
    Draws a combo box.
    Syntax
    'Declaration
     
    Public Overloads Shared Sub DrawComboBox( _
       ByVal g As GcGraphics, _
       ByVal bounds As System.Drawing.RectangleF, _
       ByVal fieldText As System.String, _
       ByVal textFormat As TextFormat, _
       ByVal backColor As System.Drawing.Color, _
       ByVal border As Border, _
       ByVal required As System.Boolean, _
       ByVal orientation As System.Single, _
       ByVal drawButton As System.Boolean _
    ) 
    public static void DrawComboBox( 
       GcGraphics g,
       System.Drawing.RectangleF bounds,
       System.string fieldText,
       TextFormat textFormat,
       System.Drawing.Color backColor,
       Border border,
       System.bool required,
       System.float orientation,
       System.bool drawButton
    )

    Parameters

    g
    The graphics to draw on.
    bounds
    The control bounds.
    fieldText
    The control text.
    textFormat
    The text format to use.
    backColor
    The background color.
    border
    The border definition.
    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.
    drawButton
    Indicates whether to draw drop-down button.
    See Also