Posted 7 October 2021, 5:02 am 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
Forums Home / Spread / Spread for WinForms
Posted by: stephane.chabeau on 7 October 2021, 5:02 am EST
Posted 7 October 2021, 5:02 am 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 8 October 2021, 12:22 am 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 8 October 2021, 2:01 am EST
this Is exactly what I wanted
Thank you again for your precious help
Stephane