Class RadioButtonPropertiesBase
Inheritance
System.Object
RadioButtonPropertiesBase
Inherited Members
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 RadioButtonPropertiesBase : PropertiesBase
Constructors
RadioButtonPropertiesBase()
Initializes a new instance of the RadioButton class.
Declaration
public RadioButtonPropertiesBase()
Properties
BeforeChange
Gets or sets the before change.
Declaration
[JsonProperty("beforeChange")]
public string BeforeChange { get; set; }
Property Value
Type | Description |
---|---|
System.String | The before change. |
Change
Event triggers after we select the radio button.
Declaration
[JsonProperty("change")]
public string Change { get; set; }
Property Value
Type | Description |
---|---|
System.String | The change. |
Checked
Specifies the checked atribute of the Radio Button control.
Declaration
[JsonProperty("checked")]
public bool Checked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Enabled
Specifies the RadioButton control state.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnablePersistence
Current model value to browser cookies for state maintains. While refresh the Header control page retains the model value apply from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Text
Specifies the text content for RadioButton.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |