Class VirtualGridNewRowEventArgs
Provides data for the UserAddedRow event.
Inheritance
System.Object
System.EventArgs
VirtualGridNewRowEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class VirtualGridNewRowEventArgs : EventArgs
Constructors
VirtualGridNewRowEventArgs(Dictionary<Int32, Object>)
Initializes a new instance of the VirtualGridNewRowEventArgs class.
Declaration
public VirtualGridNewRowEventArgs(Dictionary<int, object> newValues)
Parameters
System.Collections.Generic.Dictionary<System.Int32, System.Object>
newValues
The new values. |
Properties
NewValues
Gets the values entered in the new row cells.
Declaration
public Dictionary<int, object> NewValues { get; }
Property Value
System.Collections.Generic.Dictionary<System.Int32, System.Object>
|