Label text like in mirror

  • Thread starter Thread starter Dzemo
  • Start date Start date
D

Dzemo

I need way to have text in label and look like in mirror like "ambulance" so
when i look text via mirror it print fine. Not "ecnalubma" but exactly like
in mirror.
thx
 
Dzemo said:
I need way to have text in label and look like in mirror like "ambulance"
so when i look text via mirror it print fine. Not "ecnalubma" but exactly
like in mirror.

\\\
e.Graphics.DrawString("FGH", Me.Font, Brushes.Red, 100, 100)
e.Graphics.ScaleTransform(-1, 1)
e.Graphics.DrawString("FGH", Me.Font, Brushes.Red, -200, 200)
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top