Class Switch
Inheritance
Namespace: Syncfusion.EJ2.Buttons
Assembly: Syncfusion.EJ2.dll
Syntax
public class Switch : EJTagHelper
Constructors
Switch()
Declaration
public Switch()
Properties
Change
Triggers when Switch state has been changed by user interaction.
Declaration
public string Change { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
Checked
Specifies a value that indicates whether the Switch is checked
or not.
When set to true
, the Switch will be in checked
state.
Declaration
public bool Checked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
Created
Triggers once the component rendering is completed.
Declaration
public string Created { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is null |
CssClass
You can add custom styles to the Switch by using this property.
Declaration
public string CssClass { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Disabled
Specifies a value that indicates whether the Switch is disabled
or not.
When set to true
, the Switch will be in disabled
state.
Declaration
public bool Disabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
EnablePersistence
Enable or disable persisting component's state between page reloads.
Declaration
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
EnableRtl
Enable or disable rendering component in right to left direction.
Declaration
public bool EnableRtl { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is false |
For
Declaration
public override ModelExpression For { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression |
Overrides
HtmlAttributes
You can add the additional html attributes such as disabled, value etc., to the element. If you configured both property and equivalent html attribute then the component considers the property value.
Declaration
public object HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The default value is null |
Locale
Overrides the global culture and localization value for this component. Default global culture is 'en-US'.
Declaration
public string Locale { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Name
Defines name
attribute for the Switch.
It is used to reference form data (Switch value) after a form is submitted.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
OffLabel
Specifies a text that indicates the Switch is in unchecked state.
Declaration
public string OffLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
OnLabel
Specifies a text that indicates the Switch is in checked state.
Declaration
public string OnLabel { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |
Value
Defines value
attribute for the Switch.
It is a form data passed to the server when submitting the form.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default value is "" |