Class PickerClosedEventArgs
Provides the data for Closed event.
Inheritance
System.Object
    PickerClosedEventArgs
  Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.Android.dll
Syntax
public class PickerClosedEventArgs : EventArgs
  Constructors
PickerClosedEventArgs(Object, Object, String)
Initializes a new instance of the PickerClosedEventArgs class.
Declaration
public PickerClosedEventArgs(object oldValue, object newValue, string action)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | oldValue | Old value of the picker  | 
      
| System.Object | newValue | new value of the picker  | 
      
| System.String | action | Action performed  | 
      
Properties
Action
Gets the information either committed or cancelled.
Declaration
public string Action { get; }
  Property Value
| Type | 
|---|
| System.String | 
NewValue
Gets the new value of the picker
Declaration
public object NewValue { get; }
  Property Value
| Type | 
|---|
| System.Object | 
OldValue
Gets the old value of the picker
Declaration
public object OldValue { get; }
  Property Value
| Type | 
|---|
| System.Object |