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

CustomCustomizationFormSortEventArgsBase<T>.Field2 Property

Gets the second field to be compared.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

public T Field2 { get; }

Property Value

Type Description
T

A T object that is the second field to be compared.

Remarks

Handle the PivotGridControl.CustomCustomizationFormSort or ASPxPivotGrid.CustomCustomizationFormSort events to sort fields and folders located in the Customization Form. Use the CustomCustomizationFormSortEventArgsBase<T>.Result property to set the result of the custom comparison of the two fields or folders being processed. The fields being processed are specified by the CustomCustomizationFormSortEventArgsBase<T>.Field1 and Field2 properties. The folders being compared are specified by the CustomCustomizationFormSortEventArgsBase<T>.Caption1 and CustomCustomizationFormSortEventArgsBase<T>.Caption2 properties.

See Also