[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IOptionButton.IsChecked

IsChecked Property

IsChecked

Gets or sets whether the IOptionButton is checked.

For option buttons in the same group, a checked state indicates the currently selected option in that group.

Declaration
bool IsChecked { get; set; }
Property IsChecked As Boolean
Examples
IOptionButton optionButton = worksheet.Controls.AddOptionButton(20, 20, 72, 18);
optionButton.IsChecked = true;
bool isChecked = optionButton.IsChecked;