ASP.NET Core

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class CheckBoxPropertiesBase - ASP.NETCore API Reference | Syncfusion

    Show / Hide Table of Contents

    Class CheckBoxPropertiesBase

    Holds the checkbox properties

    Inheritance
    System.Object
    EJTagHelper
    PropertiesBase
    CheckBoxPropertiesBase
    MobileCheckBoxProperties
    Inherited Members
    PropertiesBase.Create
    PropertiesBase.Destroy
    PropertiesBase.CssClass
    EJTagHelper.GetControlDetails()
    EJTagHelper.GetControlDetails(String)
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.JavaScript
    Assembly: Syncfusion.EJ.dll
    Syntax
    public class CheckBoxPropertiesBase : PropertiesBase

    Constructors

    CheckBoxPropertiesBase()

    Initializes a new instance of the CheckBoxPropertiesBuilder class.

    Declaration
    public CheckBoxPropertiesBase()

    Properties

    Checked

    Specifies whether to check the control.

    Declaration
    [JsonProperty("checked")]
    public bool Checked { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if check; otherwise, false.

    CheckState

    Specifies the check state of the control.

    Declaration
    [JsonProperty("checkState")]
    [JsonConverter(typeof(StringEnumConverter))]
    public CheckState CheckState { get; set; }
    Property Value
    Type Description
    CheckState

    The state.

    Enabled

    Specifies whether to enable or disable the control.

    Declaration
    [JsonProperty("enabled")]
    public bool Enabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if enable; otherwise, false.

    EnablePersistence

    Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.

    Declaration
    [JsonProperty("enablePersistence")]
    public bool EnablePersistence { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [enable persistence]; otherwise, false.

    EnableTriState

    Specifies whether to render the control with tri state behaviour.

    Declaration
    [JsonProperty("enableTriState")]
    public bool EnableTriState { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [allow intermediate state]; otherwise, false.

    PreventDefault

    Specifies whether to prevent default events.

    Declaration
    [JsonProperty("preventDefault")]
    public bool PreventDefault { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if [prevent default]; otherwise, false.

    Text

    Specifies the text.

    Declaration
    [JsonProperty("text")]
    public string Text { get; set; }
    Property Value
    Type Description
    System.String

    The text.

    Back to top Generated by DocFX
    Copyright © 2001 - 2021 Syncfusion Inc. All Rights Reserved