Class LoadOnDemandEventArgs
Provides data for the LoadOnDemand event.
Inheritance
System.Object
LoadOnDemandEventArgs
Namespace: Syncfusion.iOS.TreeView
Assembly: Syncfusion.SfTreeView.iOS.dll
Syntax
public class LoadOnDemandEventArgs : EventArgs
Constructors
LoadOnDemandEventArgs()
Initializes a new instance of the LoadOnDemandEventArgs class.
Declaration
public LoadOnDemandEventArgs()
Properties
Action
Gets the Action for the TreeViewNode.
Declaration
public Action Action { get; }
Property Value
Type |
---|
Action |
HasChildNodes
Gets or sets whether the TreeViewNode has child items. Based on property value, the PopulateNodes action gets called and the expander visibility of the node is handled. If value is true, then expander icon is displayed for that node.
Declaration
public bool HasChildNodes { get; set; }
Property Value
Type |
---|
System.Boolean |
Node
Gets the data object associated with tree view item.
Declaration
public TreeViewNode Node { get; }
Property Value
Type |
---|
TreeViewNode |