This documentation is archived and is not being maintained.
RadioButton Constructor
.NET Framework 1.1
Initializes a new instance of the RadioButton class.
[Visual Basic] Public Sub New() [C#] public RadioButton(); [C++] public: RadioButton(); [JScript] public function RadioButton();
Example
[Visual Basic, C#, C++] The following example illustrates how to create new instances of RadioButton using its constructor.
[Visual Basic] Private Sub InitializeMyRadioButton() ' Create and initialize a new RadioButton. Dim radioButton1 As New RadioButton() ' Make the radio button control appear as a toggle button. radioButton1.Appearance = Appearance.Button ' Turn off the update of the display on the click of the control. radioButton1.AutoCheck = False ' Add the radio button to the form. Controls.Add(radioButton1) End Sub [C#] private void InitializeMyRadioButton() { // Create and initialize a new RadioButton. RadioButton radioButton1 = new RadioButton(); // Make the radio button control appear as a toggle button. radioButton1.Appearance = Appearance.Button; // Turn off the update of the display on the click of the control. radioButton1.AutoCheck = false; // Add the radio button to the form. Controls.Add(radioButton1); } [C++] private: void InitializeMyRadioButton() { // Create and initialize a new RadioButton. RadioButton __gc *radioButton1 = new RadioButton(); // Make the radio button control appear as a toggle button. radioButton1->Appearance = Appearance::Button; // Turn off the update of the display on the click of the control. radioButton1->AutoCheck = false; // Add the radio button to the form. Controls->Add(radioButton1); };
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
RadioButton Class | RadioButton Members | System.Web.UI.WebControls Namespace
Show: