Skip to main content

ASPxReportsLocalizer.GetString(ASPxReportsStringId) Method

Returns a localized string for the given string identifier.

Namespace: DevExpress.XtraReports.Web.Localization

Assembly: DevExpress.XtraReports.v23.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

The ReportToolbar control supports 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