Class CheckedChangedEventArgs
This class serves as an event data for
Inheritance
System.Object
CheckedChangedEventArgs
Namespace: Syncfusion.XForms.Buttons
Assembly: Syncfusion.Buttons.XForms.dll
Syntax
public class CheckedChangedEventArgs : EventArgs
Constructors
CheckedChangedEventArgs(SfRadioButton, SfRadioButton)
Initializes a new instance of the CheckedChangedEventArgs class.
Declaration
public CheckedChangedEventArgs(SfRadioButton previousItem, SfRadioButton currentItem)
Parameters
Type | Name | Description |
---|---|---|
SfRadioButton | previousItem | previous item. |
SfRadioButton | currentItem | current item. |
Properties
CurrentItem
Gets the currently checked radio button from group.
Declaration
public SfRadioButton CurrentItem { get; }
Property Value
Type |
---|
SfRadioButton |
PreviousItem
Gets the previously checked radio button from group.
Declaration
public SfRadioButton PreviousItem { get; }
Property Value
Type |
---|
SfRadioButton |