ESRI.ArcGIS.ADF.Web.UI.WebControls | |
NodePageChanged Event | |
See Also |
ESRI.ArcGIS.ADF.Web.UI.WebControls Namespace > TreeViewPlus Class : NodePageChanged Event |
Visual Basic (Declaration) | |
---|---|
<ResDescriptionAttribute("Fires when the next or previous set of nodes are displayed when the number of nodes exceeds one page.")> Public Event NodePageChanged() As TreeViewPlusNodePageChangedEventHandler |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[ResDescriptionAttribute("Fires when the next or previous set of nodes are displayed when the number of nodes exceeds one page.")] public event TreeViewPlusNodePageChangedEventHandler NodePageChanged() |
The event handler receives an argument of type TreeViewPlusNodePageChangedEventArgs containing data related to this event. The following TreeViewPlusNodePageChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewPage | Index of the new page displayed as a result of the event. |
Node | The TreeViewPlusNode at which the page was changed. |
OldPage | Index of the previous page that was displayed before the event. |
You can use this event to run cause a method to run whenever the user goes to the
next or previous sets of nodes on the tree. Paging is available when the number of
nodes within a tree (or node) exceeds the PageSize for the
control.