Creates a radio button with given box and the given name in the given PDF page

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

Syntax

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

Parameters

box
Type: System.Drawing..::..RectangleF
The radio button bounding box
buttonName
Type: System..::..String
The radio button name
pdfPage
Type: EvoPdf..::..PdfPage
The PDF page where to add this radio button

Return Value

Type: PdfFormRadioButton
The created radio button

See Also