Class GridViewRowSourceNeededEventArgs
Provides data for the parent row in RadGridView Hierarchy Mode
Inheritance
System.Object
System.EventArgs
GridViewRowSourceNeededEventArgs
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 GridViewRowSourceNeededEventArgs : EventArgs
Constructors
GridViewRowSourceNeededEventArgs(GridViewRowInfo, GridViewTemplate, IList<GridViewRowInfo>)
Initializes a new instance of the GridViewRowSourceNeededEventArgs class.
Declaration
public GridViewRowSourceNeededEventArgs(GridViewRowInfo parentRow, GridViewTemplate template, IList<GridViewRowInfo> sourceCollection)
Parameters
GridViewRowInfo
parentRow
The parent row. |
GridViewTemplate
template
The template. |
System.Collections.Generic.IList<GridViewRowInfo>
sourceCollection
The source collection. |
Properties
ParentRow
Gets the parent row.
Declaration
public GridViewRowInfo ParentRow { get; }
Property Value
GridViewRowInfo
The parent row. |
SourceCollection
Gets the source collection.
Declaration
public IList<GridViewRowInfo> SourceCollection { get; }
Property Value
System.Collections.Generic.IList<GridViewRowInfo>
The source collection. |
Template
Gets the template.
Declaration
public GridViewTemplate Template { get; }
Property Value
GridViewTemplate
The template. |