Page 1 of 1
Mirror Text or Flip Vertical
Posted: 27 Oct 2017, 22:13
by adamsnider
I need to flip text like you are looking at it in the mirror. I see there is a property for CADText.Backward, but I don't know how to set the text to show up backwards or mirrored. Can someone please help?!
Thanks
Adam
Re: Mirror Text or Flip Vertical
Posted: 30 Oct 2017, 15:44
by support
Hello Adam,
You may try to use text generation flags (bit-coded values) in the text style (CADStyle.TextGenFlags) as follows:
Code: Select all
cadText.Style.TextGenFlags = 2; // Text is backward (mirrored in X)
or
Code: Select all
cadText.Style.TextGenFlags = 4; // Text is upside down (mirrored in Y)
Mikhail
Re: Mirror Text or Flip Vertical
Posted: 11 Dec 2017, 12:54
by Romoidinut
Thanks for the method and code. I'm looking for it. Thank you very much