PdfPage.AddRadioButton Method (String, PdfPoint, Double)

Adds the new radio button control with specified unique radio button group name to the PdfPage.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfRadioButton AddRadioButton(
	string name,
	PdfPoint position,
	double height
)
VB
Public Function AddRadioButton ( 
	name As String,
	position As PdfPoint,
	height As Double
) As PdfRadioButton

Parameters

name
Type: System.String
The unique name of the radio button group to which the new radio button control should be added.
position
Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the radio button.
height
Type: System.Double
The height of the radio button.

Return Value

Type: PdfRadioButton
The newly created PdfRadioButton object.

Remarks

The Rotation of the new radio button is set to the rotation (Rotation) of the owner page.

See Also