hi
i want use "DialogueMaster.Babel.dll" inside report to detect a cell language and change direction of that cell to 'right to left' if required
is it possible?
thanks
use dll for detect language for textbox and change direction
Re: use dll for detect language for textbox and change direc
Hello.
You could add the assembly to the Reference Assemblies of the report and use it in the report.
Thank you.
You could add the assembly to the Reference Assemblies of the report and use it in the report.
Thank you.
Re: use dll for detect language for textbox and change direc
tnx
i know how to add reference to report but i don't know how to use it .
could you please guide mo to right direction?
i know how to add reference to report but i don't know how to use it .
could you please guide mo to right direction?
Re: use dll for detect language for textbox and change direc
Hi Moh2000,
Please check the video on using the function from the Referenced Assemblies.
https://www.youtube.com/watch?v=TEYuQmia9IY
The textbox has got the RightToLeft property: https://www.stimulsoft.com/en/documenta ... ponent.htm
And you can set this property depending on the language for the text component (DataMySQLSource_CategoryName) in the BeginRender event handler of the report component as follows:
DataMySQLSource_CategoryName.RightToLeft = false; Thank you,
Edward
Please check the video on using the function from the Referenced Assemblies.
https://www.youtube.com/watch?v=TEYuQmia9IY
The textbox has got the RightToLeft property: https://www.stimulsoft.com/en/documenta ... ponent.htm
And you can set this property depending on the language for the text component (DataMySQLSource_CategoryName) in the BeginRender event handler of the report component as follows:
DataMySQLSource_CategoryName.RightToLeft = false; Thank you,
Edward