Add checkbox annotation to the current page of the doc.

 

   

Syntax
 

[C#]
CheckBoxAnnotation(Doc doc, XRect rect, bool selected)

[Visual Basic]
CheckBoxAnnotation(doc As Doc, rect As XRect, selected As bool)

 

   

Params
 
Name Description
doc Doc
rect Location for the annotation
selected Whether the checkbox should be checked or not

 

   

Notes
 

Add checkbox annotation to the current page of the doc.

Note that the annotation created using this constructor is meaningless until it is connected with a Field. For this reason you are likely to want to use Doc.Form.AddCheckbox rather than this call.

 

   

Example
 
None.