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.v18.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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the PivotGridLocalizer class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

See Also