Aspose::Cells::Drawing::ActiveXControls::ToggleButtonActiveXControl::GetValue method

ToggleButtonActiveXControl::GetValue method

Indicates if the control is checked or not.

CheckValueType Aspose::Cells::Drawing::ActiveXControls::ToggleButtonActiveXControl::GetValue()

Examples

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

See Also