I want to draw a string in a specified rectangle(vertical direction), Below code gives me wat I am after but the text flow is from Left to Right, What I am trying to is Right to Left. Like Line 1 on the right side and Line 2 is on left side. I did Transformation also, but no luck.
RectangleF tabbor = new RectangleF(0, 0,borHeight, 44.35F);
StringFormat sf = new StringFormat();
//if (cmbDir.SelectedItem.Equals("Vertical"))
// sf.FormatFlags = StringFormatFlags.DirectionVertical;
sf.LineAlignment = StringAlignment.Center;
sf.Alignment = StringAlignment.Center;
SolidBrush drawBrush = new SolidBrush(Color.Black);
//Do 180 degree Rotatation Transformation
ev.Graphics.RotateTransform(90, MatrixOrder.Append);
ev.Graphics.TranslateTransform(xPos+44.35F, yPos, MatrixOrder.Append);
ev.Graphics.DrawString("T", printFont, Brushes.Black, tabbor, sf);
if (cbPreview.Checked)
ev.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(tabbor));
I am looking for the text from top to bottom(now its in reverse), line position right to left(this is working)
