I want to print some data in a form using code:
e.Graphics.DrawString(string.Format("السيد {0}", lstCustomers.Text), regularFont, Brushes.Black, 30, y);
but there is one Arabic text next to English. And here, if the layout is not set as RightToLeft, the text does not display correctly.
The problem is that when I print, I don’t see the required property!
source
share