PdfPage.AddTextBox Method (PdfPoint, PdfSize)

Adds the new text 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 PdfTextBox AddTextBox(
	PdfPoint position,
	PdfSize size
)
VB
Public Function AddTextBox ( 
	position As PdfPoint,
	size As PdfSize
) As PdfTextBox

Parameters

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