Class GridTreeRequestTreeItemsEventArgs
The class that defines the arguments for the GridTreeRequestTreeItems event.
Inheritance
System.Object
GridTreeRequestTreeItemsEventArgs
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridTreeRequestTreeItemsEventArgs : RoutedEventArgs
Constructors
GridTreeRequestTreeItemsEventArgs(Object, RoutedEvent, Object)
Constructor.
Declaration
public GridTreeRequestTreeItemsEventArgs(object parentItem, RoutedEvent routedEvent, object source)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parentItem | The parent object whose child list is being requested. |
System.Windows.RoutedEvent | routedEvent | The rounted event. |
System.Object | source | The GridTreeControl. |
Properties
ChildList
Gets or sets the list of children that belong to the ParentItem.
Declaration
public IEnumerable ChildList { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
ParentItem
Gets or sets the parest item whose children are being requested.
Declaration
public object ParentItem { get; set; }
Property Value
Type |
---|
System.Object |