Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PdfCoreLocalizer.GetString(PdfCoreStringId) Method

Returns a localized string for the given string identifier.

Namespace: DevExpress.Pdf.Localization

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

Declaration

public static string GetString(
    PdfCoreStringId id
)

Parameters

Name Type Description
id PdfCoreStringId

A PdfCoreStringId enumeration value, identifying the string to localize.

Returns

Type Description
String

A String value, corresponding to the specified identifier.

Remarks

The PDF Viewer supports localization, so that you can substitute the default strings displayed within dialog messages with your own equivalents (e.g., in your native language). Items that can be localized are listed in the PdfCoreStringId enumeration.

To localize the default resources of a PDF Viewer, override the GetString method in a PdfCoreLocalizer class descendant.

For more information, refer to Localization.

See Also