Class PickerItemLoadedEventArgs
Represents the Arguments for PickerItemLoadedEventArgs
Inheritance
System.Object
    PickerItemLoadedEventArgs
  Namespace: Syncfusion.UI.Xaml.Controls.Input
Assembly: Syncfusion.SfInput.UWP.dll
Syntax
public class PickerItemLoadedEventArgs : EventArgs
  Constructors
PickerItemLoadedEventArgs(Int32, Int32, Object)
Initializes a new instance of the PickerItemLoadedEventArgs class.
Declaration
public PickerItemLoadedEventArgs(int row, int column, object item)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | row | |
| System.Int32 | column | |
| System.Object | item | 
Properties
Column
Gets the value that indicates column index
Declaration
public int Column { get; }
  Property Value
| Type | 
|---|
| System.Int32 | 
Item
Gets the value that indicates current loaded item
Declaration
public object Item { get; }
  Property Value
| Type | 
|---|
| System.Object | 
Row
Gets the value that indicates row index
Declaration
public int Row { get; }
  Property Value
| Type | 
|---|
| System.Int32 |