Adds the new radio button control with auto-generated radio button
group name and caption to the
PdfPage.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfRadioButton AddRadioButton(
PdfPoint position,
PdfSize size,
string caption
)
VB
Public Function AddRadioButton (
position As PdfPoint,
size As PdfSize,
caption As String
) As PdfRadioButton
Parameters
- position
- Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the radio button. - size
- Type: BitMiracle.Docotic.Pdf.PdfSize
The size of the radio button with caption. - caption
- Type: System.String
The radio button caption.
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