Skip to main content

CustomCustomizationFormSortEventArgsBase<T>.Field2 Property

Gets the second field to be compared.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v23.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

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