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

PivotGridFieldCollectionBase.UseExtendedNameGeneration Property

Gets or sets whether or not the full name of a data source field is used to generate PivotGridFieldBase.Name.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

[Browsable(false)]
[DefaultValue(false)]
public bool UseExtendedNameGeneration { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to use the full name of a data source field to generate PivotGridFieldBase.Name.

Remarks

For instance, the pivot grid is bound to an OLAP cube containing the [DeliveryDate].[Date] and [ShipDate].[Date] fields. The following names will be generated depending on the UseExtendedNameGeneration value:

  • If UseExtendedNameGeneration is set to false, the fieldDate and fieldDate1 names will be generated.
  • If UseExtendedNameGeneration is set to true, the fieldDeliveryDateDate and fieldShipDateDate names will be generated.
See Also