Aspose::Cells::Drawing::ActiveXControls::ToggleButtonActiveXControl::SetValue method

ToggleButtonActiveXControl::SetValue method

Indicates if the control is checked or not.

void Aspose::Cells::Drawing::ActiveXControls::ToggleButtonActiveXControl::SetValue(CheckValueType value)

Examples

if (activeXControl.GetValue() == CheckValueType::UnChecked)
{
    activeXControl.SetValue(CheckValueType::Checked);
}

See Also