Class CheckBoxEventArgs
Event arguments for a checkbox check change.
Inheritance
System.Object
CheckBoxEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public class CheckBoxEventArgs
Constructors
| Improve this Doc View SourceCheckBoxEventArgs(Boolean, Boolean)
Declaration
public CheckBoxEventArgs(bool isChecked, bool userInitiated)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isChecked | |
System.Boolean | userInitiated |
Properties
| Improve this Doc View SourceChecked
Gets a value indicating whether the checkbox is checked.
Declaration
public bool Checked { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
UserInitiated
Gets a value indicating whether the checkbox was checked by the user or changed programmatically.
Declaration
public bool UserInitiated { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|