Question about ScrollTipPolicy

Posted by: stephane.chabeau on 6 October 2021, 8:02 pm EST

  • Posted 6 October 2021, 8:02 pm EST

    Hi

    is there a way to change the word “Row” to “Ligne” when using ScrollTipPolicy.Vertical

    In French Row = Ligne

    Thank you very much

    Stephane

  • Posted 7 October 2021, 3:22 pm EST

    Hi Stephane,

    Spread does not support complete localization for French.

    However, you can use the ScrollTipFetch event to set any custom text in the scroll tip.

    https://www.grapecity.com/spreadnet/docs/v14/online-win/spwin-cntrl-scrolltips.html

    For example:

    private void FpSpread1_ScrollTipFetch(object sender, FarPoint.Win.Spread.ScrollTipFetchEventArgs e)
    {
        e.TipText = e.TipText.Replace("Row", "Ligne");
    }
    

    Regards,

    Jitender

  • Posted 7 October 2021, 5:01 pm EST

    this Is exactly what I wanted

    Thank you again for your precious help

    Stephane

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels