Table of Contents

Method AddCheckBox

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

AddCheckBox(PdfPoint, double)

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

public PdfCheckBox AddCheckBox(PdfPoint position, double height)

Parameters

position PdfPoint

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

height double

The height of the check box.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(PdfPoint, PdfSize, string)

Adds the new check box control with auto-generated name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(PdfPoint position, PdfSize size, string caption)

Parameters

position PdfPoint

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

size PdfSize

The size of the check box with caption.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(PdfRectangle)

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

public PdfCheckBox AddCheckBox(PdfRectangle boundingBox)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the check box. Width of rectangle is not used - the check box area will be a square with a side equals to rectangle's height.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(PdfRectangle, string)

Adds the new check box control with auto-generated name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(PdfRectangle boundingBox, string caption)

Parameters

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the check box with caption.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(double, double, double)

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

public PdfCheckBox AddCheckBox(double left, double top, double height)

Parameters

left double

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

top double

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

height double

The height of the check box.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(double, double, double, double, string)

Adds the new check box control with auto-generated name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(double left, double top, double width, double height, string caption)

Parameters

left double

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

top double

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

width double

The width of the check box with caption.

height double

The height of the check box.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string, PdfPoint, double)

Adds the new check box control with specified unique name to the PdfPage.

public PdfCheckBox AddCheckBox(string name, PdfPoint position, double height)

Parameters

name string

The unique name of the check box control.

position PdfPoint

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

height double

The height of the check box.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string, PdfPoint, PdfSize, string)

Adds the new check box control with specified unique name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(string name, PdfPoint position, PdfSize size, string caption)

Parameters

name string

The unique name of the check box control.

position PdfPoint

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

size PdfSize

The size of the check box with caption.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string?, PdfRectangle)

Adds the new check box control with specified unique name to the PdfPage.

public PdfCheckBox AddCheckBox(string? name, PdfRectangle boundingBox)

Parameters

name string

The unique name of the check box control.

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the check box. Width of rectangle is not used - the check box area will be a square with a side equals to rectangle's height.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string?, PdfRectangle, string)

Adds the new check box control with specified unique name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(string? name, PdfRectangle boundingBox, string caption)

Parameters

name string

The unique name of the check box control.

boundingBox PdfRectangle

The PdfRectangle structure that specifies the location and the size of the check box with caption.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string?, double, double, double)

Adds the new check box control with specified unique name to the PdfPage.

public PdfCheckBox AddCheckBox(string? name, double left, double top, double height)

Parameters

name string

The unique name of the check box control.

left double

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

top double

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

height double

The height of the check box.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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

AddCheckBox(string?, double, double, double, double, string)

Adds the new check box control with specified unique name and caption to the PdfPage.

public PdfCheckBox AddCheckBox(string? name, double left, double top, double width, double height, string caption)

Parameters

name string

The unique name of the check box control.

left double

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

top double

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

width double

The width of the check box with caption.

height double

The height of the check box.

caption string

The check box caption.

Returns

PdfCheckBox

The newly created PdfCheckBox object.

Remarks

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