Components for Developers
© 2000-2008, Two Pilots

PDF Library Download Features Manual Tutorials FAQ Pricing HTML2PDF Add-on History In the Lab

PDF Creator Pilot documentation

Download CHM version of this manual.
Annotations
PDFPAGE_CreateControl_Checkbox

See Also Example
Collapse All

Creates a checkbox control in a PDF document.

Syntax

LONG PDFPAGE_CreateControl_Checkbox (
BSTR checkboxName,
LONG left,
LONG top,
LONG right,
LONG bottom
)
Parameters
checkboxName
Name of the control.

left
X coordinate of the left-top corner of the bounding rectangle.

top
Y coordinate of the left-top corner of the bounding rectangle.

right
X coordinate of the right-bottom corner of the bounding rectangle.

bottom
Y coordinate of the right-bottom corner of the bounding rectangle.

Return value
Checkbox index.

Remarks

Functions creates a checkbox control with name checkboxName on the current PDF page in an area bounded by the provided coordinates.

The return value is an annotation/control identifier in document's annotations collection and can be used in AddControlToAction, CurrentAnnotationIndex.

Example

Creating a checkbox

Delphi
[copy to clipboard]
{ PDF object is supposed to be created }
PDF.BeginDoc;
PDF.PDFPAGE_CreateControl_Checkbox('ch1', 10, 10, 110, 23);
PDF.PDFANNOTATION_Caption := 'Caption';
PDF.EndDoc;
C/C++
[copy to clipboard]
// PDF object is supposed to be created
PDF->BeginDoc();
PDF->PDFPAGE_CreateControl_Checkbox("ch1", 10, 10, 110, 23);
PDF->PDFANNOTATION_Caption = "Caption";
PDF->EndDoc();
C#
[copy to clipboard]
// PDF object is supposed to be created
PDF.BeginDoc();
PDF.PDFPAGE_CreateControl_Checkbox("ch1", 10, 10, 110, 23);
PDF.PDFANNOTATION_Caption = "Caption";
PDF.EndDoc();
Visual Basic
[copy to clipboard]
' PDF object is supposed to be created
PDF.BeginDoc
PDF.PDFPAGE_CreateControl_Checkbox "ch1", 10, 10, 110, 23
PDF.PDFANNOTATION_Caption = "Caption"
PDF.EndDoc

See Also

PDF Library Download Features Manual Tutorials FAQ Pricing HTML2PDF Add-on History In the Lab

 

 

PDF Library | Virtual Printer | Converters to PDF

Support | Blog | Forum | Contacts

© 2000-2008, Two Pilots