Articles in this section
Category / Section

How to localize the Tooltip for the toolbar buttons in PdfViewer control?

1 min read

In PdfViewer default toolbar shows the tooltip text as common language. If we need to localize the tooltip text by using our local language, we have to use custom toolbar. In custom toolbar we can able to change the tooltip text according our local language. 

Below code snippets represent the localized Tooltip text in German language.

C#

    this.buttonOpen.Text = "Klicken Sie hier um ein PDF-Dokument zu öffnen";
    this.buttonFirst.ToolTipText = "erste Seite";
    this.buttonPrevious.ToolTipText = "Vorherige Seite";
    this.buttonNext.ToolTipText = "nächste Seite";
    this.buttonLast.ToolTipText = "Letzte Seite";
    this.buttonFitPage.ToolTipText = "Seite anpassen";
    this.buttonFitWidth.ToolTipText = "Breite anpassen";
 

 

Sample:

https://www.syncfusion.com/downloads/support/directtrac/general/CustomToolbar_Localize_tooltip2045171444.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied