Table of Contents

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

int

this[int]

Gets the radio button at the given index in the radio buttons group

public PdfFormRadioButton this[int index] { get; }

Parameters

index int

The 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 string

The 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 RectangleF

The radio button bounding box

buttonName string

The 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 RectangleF

The radio button bounding box

buttonName string

The radio button name

pdfPage PdfPage

The 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 PdfFormRadioButton

The 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 int

The 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 string

The radio button name