ToggleButtonActiveXControl.Value

ToggleButtonActiveXControl.Value property

Indicates if the control is checked or not.

public CheckValueType Value { get; set; }

Examples

[C#]
if(activeXControl.Value == CheckValueType.UnChecked)
{
    activeXControl.Value = CheckValueType.Checked;
}

See Also