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

PdfCoreResLocalizer.GetLocalizedString(PdfCoreStringId) Method

Gets the string, localized by the current PdfCoreResLocalizer, for the specified dialog message.

Namespace: DevExpress.Pdf.Localization

Assembly: DevExpress.Pdf.v20.2.Core.dll

NuGet Package: DevExpress.Pdf.Core

Declaration

public override string GetLocalizedString(
    PdfCoreStringId id
)

Parameters

Name Type Description
id PdfCoreStringId

A PdfCoreStringId enumeration value, specifying the dialog message whose caption (text) is to be localized.

Returns

Type Description
String

A String value, specifying the text to be displayed within the specified dialog message.

Remarks

This method should be overridden in PdfCoreResLocalizer class’ descendants, in order to modify the captions (text strings) of dialog messages. The GetLocalizedString method gets a string ID (represented by an appropriate enumeration value) and should return an appropriate string.

See Also