Table of Contents

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 PdfPoint

The position of the upper-left corner of the combo box.

size PdfSize

The size of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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

AddComboBox(PdfRectangle)

Adds the new combo box control with auto-generated name to the PdfPage.

public PdfComboBox AddComboBox(PdfRectangle boundingBox)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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

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 double

The x-coordinate of the upper-left corner of the combo box.

top double

The y-coordinate of the upper-left corner of the combo box.

width double

The width of the combo box.

height double

The height of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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

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 string

The unique name of the combo box control.

position PdfPoint

The position of the upper-left corner of the combo box.

size PdfSize

The size of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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

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 string

The unique name of the combo box control.

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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

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 string

The unique name of the combo box control.

left double

The x-coordinate of the upper-left corner of the combo box.

top double

The y-coordinate of the upper-left corner of the combo box.

width double

The width of the combo box.

height double

The height of the combo box.

Returns

PdfComboBox

The newly created PdfComboBox object.

Remarks

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