Show / Hide Table of Contents

    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 Source

    CheckBoxEventArgs(Boolean, Boolean)

    Declaration
    public CheckBoxEventArgs(bool isChecked, bool userInitiated)
    Parameters
    Type Name Description
    System.Boolean isChecked
    System.Boolean userInitiated

    Properties

    | Improve this Doc View Source

    Checked

    Gets a value indicating whether the checkbox is checked.

    Declaration
    public bool Checked { get; }
    Property Value
    Type Description
    System.Boolean

    true if checked; otherwise, false.

    | Improve this Doc View Source

    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

    true if user initiated; otherwise, false.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX