Change the text direction in WPF FlowDocument TableCell -


i'm trying create simple table in wpf flowdocument has rotated text in of cells. in microsoft word can change text direction of table cell haven't been able find way in wpf flowdocument.

any idea on how rotate text 90 degrees or change text direction. i've tried few things text doesn't wrap , size desired.

any great. thanks

look using blockuicontainer , rotatetransform

example:

<tablecell>   <blockuicontainer>     <textblock text="hello world">       <textblock.layouttransform>         <rotatetransform angle="90"></rotatetransform>       </textblock.layouttransform>     </textblock>  </blockuicontainer> </tablecell> 

Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -