PdfPage.AddComboBox Method (Double, Double, Double, Double)

Docotic.Pdf library help > BitMiracle.Docotic.Pdf > PdfPage Class > PdfPage Methods > AddComboBox Method > AddComboBox Method (Double, Double, Double, Double)
Adds the new combo box control with auto-generated name to the PdfPage.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfComboBox AddComboBox(
	double left,
	double top,
	double width,
	double height
)
VB
Public Function AddComboBox ( 
	left As Double,
	top As Double,
	width As Double,
	height As Double
) As PdfComboBox

Parameters

left
Type: System.Double
The x-coordinate of the upper-left corner of the combo box.
top
Type: System.Double
The y-coordinate of the upper-left corner of the combo box.
width
Type: System.Double
The width of the combo box.
height
Type: System.Double
The height of the combo box.

Return Value

Type: PdfComboBox
The newly created PdfComboBox object.

Remarks

The Rotation of the new combo box is set to the rotation (Rotation) of the owner page.

See Also