RadioButtonFormControl Interface
Radio button form control.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
public interface RadioButtonFormControl :
FormControl,
Shape,
FloatingObject,
ShapeFormatBase,
TextFormControl,
LinkedCellFormControl,
ShadedFormControl
#Related API Members
The following members return RadioButtonFormControl objects:
#Remarks
#Create a Button Form Control
The code sample below creates a button form control:
Workbook workbook = new Workbook();
workbook.LoadDocument("Document.xlsx");
var cellRange = workbook.Worksheets[0].Range["B2:C4"];
var radioButtonFormControl = formControls.AddRadioButton(cellRange);
radioButtonFormControl.PlainText = "Click Here";
radioButtonFormControl.PrintObject = false;
Note
The Form
#Obtain Button Form Controls
The Worksheet.FormControls property obtains all form controls in a worksheet. You can use one of the following ways to obtain a specific form control:
- Access the item in the collection by its index
- Call the FormControlCollection.GetFormControlsByName method
- Call the FormControlCollection.GetFormControlById method
The Id and Name properties return the form control’s identifier and name.
#Modify Button Form Controls
Use the RadioButtonFormControl
class properties to change radio button parameters.
Note
The Shapenull
for the Button
.
The code sample below retrieves all radio button form controls from a worksheet and disables printing for all buttons:
using DevExpress.Spreadsheet;
using System.Linq;
Workbook workbook = new Workbook();
workbook.LoadDocument("Document.xlsx");
var formControls = workbook.Worksheets[0].FormControls;
var radioButtons = formControls.Where(formControl => formControl.FormControlType == FormControlType.RadioButton).Cast<RadioButtonFormControl>();
foreach (ButtonFormControl radioButton in radioButtons) {
radioButton.PrintObject = false;
}
#Remove Button Form Controls
Call the FormControlCollection.Remove or FormControlCollection.RemoveAt method to remove a form control.
The code sample below removes all radio buttons from a worksheet:
Workbook workbook = new Workbook();
workbook.LoadDocument("Document.xlsx");
var formControls = workbook.Worksheets[0].FormControls;
for (int i = formControls.Count - 1; i >= 0; i--) {
if (formControls[i].FormControlType == FormControlType.RadioButton)
formControls.RemoveAt(i);
}