Creates a radio button with the given box and the given name in the radio button group

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public PdfFormRadioButton AddRadioButton(
	RectangleF box,
	string buttonName
)
Visual Basic
Public Function AddRadioButton ( 
	box As RectangleF,
	buttonName As String
) As PdfFormRadioButton
Visual C++
public:
PdfFormRadioButton^ AddRadioButton(
	RectangleF box, 
	String^ buttonName
)

Parameters

box
Type: System.Drawing..::..RectangleF
The radio button bounding box
buttonName
Type: System..::..String
The radio button name

Return Value

Type: PdfFormRadioButton
The created radio button

See Also