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

PivotGridLocalizer Class

Provides localized strings for the PivotGrid’s user interface elements.

Namespace: DevExpress.XtraPivotGrid.Localization

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

Declaration

public class PivotGridLocalizer :
    XtraLocalizer<PivotGridStringId>

Remarks

To manually localize the PivotGrid, execute the following steps:

  • Create a descendant of the PivotGridLocalizer class and override its GetLocalizedString or PopulateStringTable method. The GetLocalizedString method should return localized strings for the specified string resource identifiers. The PopulateStringTable method should replace strings in the PivotGridLocalizer‘s dictionary for specific resource identifiers.
  • Assign an instance of this class to the static PivotGridLocalizer.Active property of the PivotGridLocalizer. To ensure that all PivotGrid’s UI strings are properly localized, perform this step before the PivotGrid is initialized.

Inheritance

See Also