Class RecordDeletedEventArgs
Provides data for RecordDeleted event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class RecordDeletedEventArgs : GridEventArgs
Constructors
RecordDeletedEventArgs(Object)
Initializes a new instance of the RecordDeletedEventArgs class.
Declaration
public RecordDeletedEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
Items
Gets a list of object that were removed from underlying source collection.
Declaration
public List<object> Items { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Object> | The list of object that were removed from underlying source collection. |
SelectedIndex
Gets or sets the index of selected item.
Declaration
public int SelectedIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the selected item. |