Skip to main content
A newer version of this page is available. .

PivotGridCustomFieldSortEventArgs.Handled Property

Gets or sets whether a comparison operation is being handled and therefore no default processing is required.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v19.1.dll

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if a comparison operation is being handled; otherwise false.

Remarks

Set the Handled property to true to indicate that the current comparison operation is being handled and therefore no default processing is required. If this property is left set to false the default comparison mechanism will be invoked after the ASPxPivotGrid.CustomFieldSort event handler has been called. This will override the result of your comparison operation which is specified by the PivotGridCustomFieldSortEventArgs.Result property.

See Also