Class ChildViewExpandedEventArgs
Provides data for the ChildViewExpanded event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class ChildViewExpandedEventArgs : EventArgs
Constructors
ChildViewExpandedEventArgs(GridViewHierarchyRowInfo)
Initializes a new instance of the ChildViewExpandedEventArgs class.
Declaration
public ChildViewExpandedEventArgs(GridViewHierarchyRowInfo parentRow)
Parameters
GridViewHierarchyRowInfo
parentRow
The GridViewHierarchyRowInfo that was expanded/collapsed. |
Properties
ChildRow
Gets the GridViewDetailsRowInfo associated with the currently expanded/collapsed row.
Declaration
public GridViewDetailsRowInfo ChildRow { get; }
Property Value
GridViewDetailsRowInfo
|
ChildViewInfo
Gets the child GridViewInfo for the currenlty expanded/collapsed row.
Declaration
public GridViewInfo ChildViewInfo { get; }
Property Value
GridViewInfo
|
IsExpanded
Gets the expanded state for the row.
Declaration
public bool IsExpanded { get; }
Property Value
System.Boolean
|
ParentRow
Gets the GridViewRowInfo that was expanded.
Declaration
public GridViewRowInfo ParentRow { get; }
Property Value
GridViewRowInfo
|