PdfPage.AddComboBox Method (PdfPoint, PdfSize)

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(
	PdfPoint position,
	PdfSize size
)
VB
Public Function AddComboBox ( 
	position As PdfPoint,
	size As PdfSize
) As PdfComboBox

Parameters

position
Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the combo box.
size
Type: BitMiracle.Docotic.Pdf.PdfSize
The size 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