PdfRadioButton.ChecksInUnison Property

(PDF 1.5) Gets or sets a value indicating whether this radio button and all other radio buttons with the same export values from the same group of radio buttons should turn on and off in unison; that is if one is checked, they are all checked.

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

Syntax

C#
public bool ChecksInUnison { get; set; }
VB
Public Property ChecksInUnison As Boolean
	Get
	Set

Property Value

Type: Boolean
A value indicating whether this radio button and all other radio buttons with the same export values from the same group of radio buttons should turn on and off in unison; that is if one is checked, they are all checked.

Remarks

If this property is true then all radio buttons with the same export values from the same group of radio buttons will turn on and off in unison; that is if one is checked, they are all checked. If this property is the buttons are mutually exclusive (the same behavior as HTML radio buttons).

The default value of this property is false. I.e. radio buttons are mutually exclusive by default.

See Also