Skip to main content

TreeListToolbarItemClickEventArgs.Handled Property

Specifies whether the toolbar item click is handled manually, so no default processing is required.

Namespace: DevExpress.Web.ASPxTreeList

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

NuGet Package: DevExpress.Web

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if no default processing is required; otherwise false.

Remarks

Set the Handled property to true if you want to perform a custom action on a the toolbar item click. If this property is left set to false, the default actions will be performed after the ASPxTreeList.ToolbarItemClick event handler is raised.

See Also