Class GridTreeRequestChildListEventArgs
Passes arguments for the RequestChildList event.
Inheritance
System.Object
GridTreeRequestChildListEventArgs
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridTreeRequestChildListEventArgs : EventArgs
Constructors
GridTreeRequestChildListEventArgs(GridTreeNode, Object)
Constructor.
Declaration
public GridTreeRequestChildListEventArgs(GridTreeNode parentNode, object parentItem)
Parameters
Type | Name | Description |
---|---|---|
GridTreeNode | parentNode | The parent GridTreeNode object for this node. |
System.Object | parentItem | The parent tree object for this node. |
GridTreeRequestChildListEventArgs(GridTreeNode, Object, Boolean)
Constructor.
Declaration
public GridTreeRequestChildListEventArgs(GridTreeNode parentNode, object parentItem, bool resetChildAndRepopulate)
Parameters
Type | Name | Description |
---|---|---|
GridTreeNode | parentNode | The parent GridTreeNode object for this node. |
System.Object | parentItem | The parent tree object for this node. |
System.Boolean | resetChildAndRepopulate | Indicates whether to force the child collection to be reloaded. |
GridTreeRequestChildListEventArgs(Object)
Constructor.
Declaration
public GridTreeRequestChildListEventArgs(object parentItem)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parentItem | The parent tree object for this node. |
GridTreeRequestChildListEventArgs(Object, Boolean)
Constructor.
Declaration
public GridTreeRequestChildListEventArgs(object parentItem, bool resetChildAndRepopulate)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parentItem | The parent tree object for this node. |
System.Boolean | resetChildAndRepopulate | Indicates whether to force the child collection to be reloaded. |
Properties
ChildList
Gets or sets the child list for this node.
Declaration
public IEnumerable ChildList { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
ParentItem
Gets or sets the parent tree object for this node.
Declaration
public object ParentItem { get; set; }
Property Value
Type |
---|
System.Object |
ParentNode
Gets or sets the parent GridTreeNode for this node.
Declaration
public GridTreeNode ParentNode { get; set; }
Property Value
Type |
---|
GridTreeNode |
ResetChildAndRepopulate
Gets or sets whether to force the child collection to be reloaded.
Declaration
public bool ResetChildAndRepopulate { get; set; }
Property Value
Type |
---|
System.Boolean |