Skip to main content
A newer version of this page is available.

XtraPdfViewerResLocalizer.GetLocalizedString(XtraPdfViewerStringId) Method

Gets the string, localized by the current XtraPdfViewerResLocalizer, for the specified user interface element.

Namespace: DevExpress.XtraPdfViewer.Localization

Assembly: DevExpress.XtraPdfViewer.v19.1.dll

Declaration

public override string GetLocalizedString(
    XtraPdfViewerStringId id
)

Parameters

Name Type Description
id XtraPdfViewerStringId

An XtraPdfViewerStringId enumeration value, specifying the user interface element whose caption (text) is to be localized.

Returns

Type Description
String

A String value, specifying the text to be displayed within the specified user interface element.

Remarks

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

See Also