Adds the new list box control with specified unique name
to the
PdfPage.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfListBox AddListBox(
string name,
PointF position,
SizeF size
)
VB
Public Function AddListBox (
name As String,
position As PointF,
size As SizeF
) As PdfListBox
Parameters
- name
- Type: System.String
The unique name of the list box control. - position
- Type: System.Drawing.PointF
The position of the upper-left corner of the list box. - size
- Type: System.Drawing.SizeF
The size of the list box.
Return Value
Type:
PdfListBox
The newly created
PdfListBox object.
Remarks
The
Rotation of the new list box is set to the rotation
(PdfPage.
Rotation) of the owner page.
See Also