Class RadioButton
Inheritance
System.Object
RadioButton
Assembly: Syncfusion.EJ2.dll
public class RadioButton : EJTagHelper
Constructors
Declaration
Properties
Event trigger when the RadioButton state has been changed by user interaction.
Declaration
public string Change { get; set; }
Property Value
Type |
Description |
System.String |
|
Specifies a value that indicates whether the RadioButton is checked
or not.
When set to true
, the RadioButton will be in checked
state.
Declaration
public bool Checked { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
protected override string ClassName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Triggers once the component rendering is completed.
Declaration
public string Created { get; set; }
Property Value
Type |
Description |
System.String |
|
Defines class/multiple classes separated by a space in the RadioButton element.
You can add custom styles to the RadioButton by using this property.
Declaration
public string CssClass { get; set; }
Property Value
Type |
Description |
System.String |
|
Specifies a value that indicates whether the RadioButton is disabled
or not.
When set to true
, the RadioButton will be in disabled
state.
Declaration
public bool Disabled { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Defines whether to allow the cross-scripting site or not.
Declaration
public bool EnableHtmlSanitizer { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Enable or disable persisting component's state between page reloads.
Declaration
public bool EnablePersistence { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Enable or disable rendering component in right to left direction.
Declaration
public bool EnableRtl { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Declaration
public override ModelExpression For { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression |
|
Overrides
Allows additional HTML attributes such as title, name, etc., and
accepts n number of attributes in a key-value pair format.
Declaration
public object HtmlAttributes { get; set; }
Property Value
Type |
Description |
System.Object |
|
Declaration
protected override bool IsFor { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
Defines the caption for the RadioButton, that describes the purpose of the RadioButton.
Declaration
public string Label { get; set; }
Property Value
Type |
Description |
System.String |
|
Positions label before
/after
the RadioButton.
The possible values are:
Before: The label is positioned to left of the RadioButton.
After: The label is positioned to right of the RadioButton.
Declaration
public RadioLabelPosition LabelPosition { get; set; }
Property Value
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 |
|
Defines name
attribute for the RadioButton.
It is used to reference form data (RadioButton value) after a form is submitted.
Declaration
public string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
Declaration
protected override string NameSpace { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Declaration
protected override string TagName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Defines value
attribute for the RadioButton.
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 |
|