Skip to main content
A newer version of this page is available. .
Tab

TreeViewVirtualModeCreateChildrenEventArgs.Children Property

Gets or sets the collection of children for the currently processed node object.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public IList<TreeViewVirtualNode> Children { get; set; }

Property Value

Type Description
IList<TreeViewVirtualNode>

The list of child nodes.

Remarks

Use the Children property to access a list of child objects owned by the processed node.

Example

In this demo, the ASPxTreeView uses Virtual Mode to display the file/folder tree of the demo’s web site.

<dx:ASPxTreeView ID="treeView" runat="server" EnableCallBacks="true" OnVirtualModeCreateChildren="treeView_VirtualModeCreateChildren">
</dx:ASPxTreeView>
See Also