Add radio button annotation to the current page of the doc.

 

   

Syntax
 

[C#]
RadioButtonAnnotation(Doc doc, XRect rect, string name, bool selected)

[Visual Basic]
RadioButtonAnnotation(Doc doc, XRect rect, string name, bool selected)

 

   

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

 

   

Notes
 

Add radio button 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.AddRadioButtonGroup rather than this call.

 

   

Example
 
None.