//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { /// /// Represents a control used to render a check box that can be changed by the browser user. /// public interface ICheckBoxControl { /// /// The checked state of the control. /// bool Checked { get; set; } /// /// Raised when the checked state changes. /// event EventHandler CheckedChanged; } }