반응형
using (Matrix matrix = new Matrix())
{
matrix .RotateAt(90f ,new PointF(원점));
e.Graphics.MultiplyTransform(matrix );
e.Graphics.DrawString("TestString", this.Font, Brushes.Black, 100, 100);
matrix .Invert();
e.Graphics.MultiplyTransform(matrix );
}
'Programing > C# ' 카테고리의 다른 글
런타임시에 PropertyGrid 속성 감추기, 보여주기 (0) | 2014.04.03 |
---|---|
한글입력 구분 (0) | 2014.03.26 |
point , inch, pixel ,mm 단위 관계 (0) | 2013.12.11 |
Make Short Path(긴 파일명 짧게 줄이는 방법), 파일이름 길이 줄이기 (0) | 2012.12.18 |
Reflection 리플렉션 사용하기 (0) | 2012.12.12 |