Class PdfFormRadioButtonsGroup
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Represents a group of radio buttons in a PDF form
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormRadioButtonsGroup : PdfFormField
- Inheritance
-
PdfFormRadioButtonsGroup
- Inherited Members
Properties
Count
Gets the number of radio buttons in group
public int Count { get; }
Property Value
this[int]
Gets the radio button at the given index in the radio buttons group
public PdfFormRadioButton this[int index] { get; }
Parameters
index
intThe radio button index
Property Value
- PdfFormRadioButton
The the radio button at the given index in the radio buttons group
this[string]
Gets the radio button with the given name from the radio buttons group
public PdfFormRadioButton this[string name] { get; }
Parameters
name
stringThe radio button name
Property Value
- PdfFormRadioButton
The radio button with the given name from the radio buttons group
Methods
AddRadioButton(RectangleF, string)
Creates a radio button with the given box and the given name in the radio button group
public PdfFormRadioButton AddRadioButton(RectangleF box, string buttonName)
Parameters
box
RectangleFThe radio button bounding box
buttonName
stringThe radio button name
Returns
- PdfFormRadioButton
The created radio button
AddRadioButton(RectangleF, string, PdfPage)
Creates a radio button with given box and the given name in the given PDF page
public PdfFormRadioButton AddRadioButton(RectangleF box, string buttonName, PdfPage pdfPage)
Parameters
box
RectangleFThe radio button bounding box
buttonName
stringThe radio button name
pdfPage
PdfPageThe PDF page where to add this radio button
Returns
- PdfFormRadioButton
The created radio button
SetCheckedRadioButton(PdfFormRadioButton)
Call this method to check on the given radio button
public void SetCheckedRadioButton(PdfFormRadioButton radioButton)
Parameters
radioButton
PdfFormRadioButtonThe radio button to check on
SetCheckedRadioButton(int)
Call this method to check on the radio button at the given index
public void SetCheckedRadioButton(int index)
Parameters
index
intThe radio button index
SetCheckedRadioButton(string)
Call this method to check on the radio button with the given name
public void SetCheckedRadioButton(string name)
Parameters
name
stringThe radio button name