Method AddComboBox
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
AddComboBox(PdfPoint, PdfSize)
Adds the new combo box control with auto-generated name to the PdfPage.
public PdfComboBox AddComboBox(PdfPoint position, PdfSize size)
Parameters
position
PdfPointThe position of the upper-left corner of the combo box.
size
PdfSizeThe size of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.
Remarks
AddComboBox(PdfRectangle)
Adds the new combo box control with auto-generated name to the PdfPage.
public PdfComboBox AddComboBox(PdfRectangle boundingBox)
Parameters
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.
Remarks
AddComboBox(double, double, double, double)
Adds the new combo box control with auto-generated name to the PdfPage.
public PdfComboBox AddComboBox(double left, double top, double width, double height)
Parameters
left
doubleThe x-coordinate of the upper-left corner of the combo box.
top
doubleThe y-coordinate of the upper-left corner of the combo box.
width
doubleThe width of the combo box.
height
doubleThe height of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.
Remarks
AddComboBox(string, PdfPoint, PdfSize)
Adds the new combo box control with specified unique name to the PdfPage.
public PdfComboBox AddComboBox(string name, PdfPoint position, PdfSize size)
Parameters
name
stringThe unique name of the combo box control.
position
PdfPointThe position of the upper-left corner of the combo box.
size
PdfSizeThe size of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.
Remarks
AddComboBox(string?, PdfRectangle)
Adds the new combo box control with specified unique name to the PdfPage.
public PdfComboBox AddComboBox(string? name, PdfRectangle boundingBox)
Parameters
name
stringThe unique name of the combo box control.
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.
Remarks
AddComboBox(string?, double, double, double, double)
Adds the new combo box control with specified unique name to the PdfPage.
public PdfComboBox AddComboBox(string? name, double left, double top, double width, double height)
Parameters
name
stringThe unique name of the combo box control.
left
doubleThe x-coordinate of the upper-left corner of the combo box.
top
doubleThe y-coordinate of the upper-left corner of the combo box.
width
doubleThe width of the combo box.
height
doubleThe height of the combo box.
Returns
- PdfComboBox
The newly created PdfComboBox object.