General Information
.NET Subscription
Desktop
Web
Controls and Extensions
Mainteinance Mode
Enterprise and Analytic Tools
Quality Assurance and Productivity
Frameworks and Libraries
All docs
V19.2
General Information
.NET Subscription
Desktop
Web
Controls and Extensions
Mainteinance Mode
Enterprise and Analytic Tools
Quality Assurance and Productivity
Frameworks and Libraries
19.2
19.1
18.2
18.1
17.2
TreeListCustomCallbackEventHandler Delegate
A method that will handle the ASPxTreeList.CustomCallback event.
Namespace: DevExpress.Web.ASPxTreeList
Assembly: DevExpress.Web.ASPxTreeList.v19.2.dll
Declaration
public delegate void TreeListCustomCallbackEventHandler(
object sender,
TreeListCustomCallbackEventArgs e
);
Public Delegate Sub TreeListCustomCallbackEventHandler(
sender As Object,
e As TreeListCustomCallbackEventArgs
)
Parameters
Name | Type | Description |
---|---|---|
sender | Object | The event source. |
e | TreeListCustomCallbackEventArgs | A TreeListCustomCallbackEventArgs object that contains event data. |
Remarks
When creating a TreeListCustomCallbackEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs unless you remove the delegate. For more information about event handler delegates, see Events and Delegates in MSDN.
See Also
Feedback