Class CheckBoxPropertiesBase
Holds the checkbox properties
Inheritance
Inherited Members
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 |
|
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 |
|
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 |
|
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 |
|
PreventDefault
Specifies whether to prevent default events.
Declaration
[JsonProperty("preventDefault")]
public bool PreventDefault { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Text
Specifies the text.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |