Skip to main content

ASPxTreeList.FocusedNode Property

Gets the focused node.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public TreeListNode FocusedNode { get; }

Property Value

Type Description
TreeListNode

A TreeListNode object that represents the node currently being focused. null (Nothing in Visual Basic) if the focused node feature is disabled.

Remarks

To enable the focused node, set the TreeListSettingsBehavior.AllowFocusedNode property to true.

Note that the focused node cannot be set via the FocusedNode property. To move the node focus in code, use the node’s TreeListNode.Focus method.

See Also