Skip to main content

DxTreeView.AfterExpand Event

Fires after a node has been expanded.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public Action<TreeViewNodeEventArgs> AfterExpand { get; set; }

Event Data

The AfterExpand event's data class is TreeViewNodeEventArgs. The following properties provide information specific to this event:

Property Description
CausedByAPI Obsolete. Specifies whether an event was triggered by a user action or programmatically.
NodeInfo Returns information about a node related to the event.
Reason Returns the reason why the TreeView node’s state changes.

Remarks

The AfterExpand event fires after a node has been expanded. The following code sample illustrates how to handle the AfterExpand event.

<DxTreeView AfterExpand="@AfterExpand">
    ...
</DxTreeView>

@code  {
    void AfterExpand(TreeViewNodeEventArgs e) {
        // your code
    }
}
See Also