[]
Initializes a new instance of the RenderInputRadioButton class.
public RenderInputRadioButton()
Public Sub New()
Initializes a new instance of the RenderInputRadioButton class, assigning the Text property.
public RenderInputRadioButton(string text)
Public Sub New(text As String)
| Type | Name | Description |
|---|---|---|
| string | text | A string to assign to the Text property. |
Initializes a new instance of the RenderInputRadioButton class, assigning the Name and Text properties.
public RenderInputRadioButton(string name, string text)
Public Sub New(name As String, text As String)
| Type | Name | Description |
|---|---|---|
| string | name | A string to assign to the Name property. |
| string | text | A string to assign to the Text property. |
Initializes a new instance of the RenderInputRadioButton class, assigning the Name, Text and GroupIndex properties.
public RenderInputRadioButton(string name, string text, int groupIndex)
Public Sub New(name As String, text As String, groupIndex As Integer)
| Type | Name | Description |
|---|---|---|
| string | name | A string to assign to the Name property. |
| string | text | A string to assign to the Text property. |
| int | groupIndex | A value to assign to the GroupIndex property. |
Initializes a new instance of the RenderInputRadioButton class, assigning the Text and GroupIndex properties.
public RenderInputRadioButton(string text, int groupIndex)
Public Sub New(text As String, groupIndex As Integer)
| Type | Name | Description |
|---|---|---|
| string | text | A string to assign to the Text property. |
| int | groupIndex | A value to assign to the GroupIndex property. |