PdfPage.AddCheckBox Method (Double, Double, Double)

Adds the new check 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 PdfCheckBox AddCheckBox(
	double left,
	double top,
	double height
)
VB
Public Function AddCheckBox ( 
	left As Double,
	top As Double,
	height As Double
) As PdfCheckBox

Parameters

left
Type: System.Double
The x-coordinate of the upper-left corner of the check box.
top
Type: System.Double
The y-coordinate of the upper-left corner of the check box.
height
Type: System.Double
The height of the check box.

Return Value

Type: PdfCheckBox
The newly created PdfCheckBox object.

Remarks

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

See Also