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

PivotGridOptionsPrint.IsMergeFieldValues(Boolean) Method

Returns whether the values of outer column or row fields are merged when a pivot grid is printed.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

public bool IsMergeFieldValues(
    bool isColumn
)

Parameters

Name Type Description
isColumn Boolean

true to check whether outer column field values will be merged; false to check whether outer row field values will be merged.

Returns

Type Description
Boolean

true if field values will be merged; otherwise, false.

Remarks

If the isColumn parameter is set to true, the IsMergeFieldValues method returns the PivotGridOptionsPrint.MergeColumnFieldValues property’s value. If it’s set to false, this method returns a value of the PivotGridOptionsPrint.MergeRowFieldValues property.

This method supports the internal infrastructure and generally there is no need to call it directly from your code.

Note that the IsMergeFieldValues property is used to customize Pivot Grid export settings when data is exported in the WYSIWYG export mode. This property is not in effect for the data-aware mode. To customize the Pivot Grid export settings while exporting in data-aware mode, use the PivotXlsExportOptions and PivotXlsxExportOptions descendants.

See Also