Skip to main content

Localizing Your DevExpress-powered .NET App – Your Feedback Matters

We hope to validate a few hypotheses about our Localization Service, Unified Component Installer, overall localization quality, and ways to translate strings in general.

Take the survey Not interested

ASPxReportsLocalizer.GetString(ASPxReportsStringId) Method

Returns a localized string for the given string identifier.

Namespace: DevExpress.XtraReports.Web.Localization

Assembly: DevExpress.XtraReports.v24.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

#Declaration

public static string GetString(
    ASPxReportsStringId id
)

#Parameters

Name Type Description
id ASPxReportsStringId

An ASPxReportsStringId enumeration value identifying the string to localize.

#Returns

Type Description
String

A String corresponding to the specified identifier.

#Remarks

Web Reporting controls support localization, i.e. you can substitute strings displayed within default context menus with your own equivalents (for example, in your native language). Items that can be localized are enumerated by the ASPxReportsStringId enumeration.

To localize the ReportToolbar’s resources, you need to override the GetString method in a ASPxReportsLocalizer class descendant.

To learn more, refer to the Localization topic.

See Also