Adds the new text 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 PdfTextBox AddTextBox(
string name,
double left,
double top,
double width,
double height
)
VB
Public Function AddTextBox (
name As String,
left As Double,
top As Double,
width As Double,
height As Double
) As PdfTextBox
Parameters
- name
- Type: System.String
The unique name of the text box control. - left
- Type: System.Double
The x-coordinate of the upper-left corner of
the text box. - top
- Type: System.Double
The y-coordinate of the upper-left corner of
the text box. - width
- Type: System.Double
The width of the text box. - height
- Type: System.Double
The height of the text box.
Return Value
Type:
PdfTextBox
The newly created
PdfTextBox object.
Remarks
The
Rotation of the new text box is set to the rotation
(
Rotation) of the owner page.
See Also