Mirror Text or Flip Vertical
Moderators: SDS, support, admin
-
- Posts: 1
- Joined: 27 Oct 2017, 22:10
Mirror Text or Flip Vertical
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
Thanks
Adam
Re: Mirror Text or Flip Vertical
Hello Adam,
You may try to use text generation flags (bit-coded values) in the text style (CADStyle.TextGenFlags) as follows:
or
Mikhail
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)
Code: Select all
cadText.Style.TextGenFlags = 4; // Text is upside down (mirrored in Y)
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 2
- Joined: 11 Dec 2017, 11:12
Re: Mirror Text or Flip Vertical
Thanks for the method and code. I'm looking for it. Thank you very much