void Document_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { int itar=0; foreach (char c in this.richTextBox.Text) { if (c != '\n') { this.richTextBox.Select(itar, 1); Point point = this.richTextBox.GetPositionFromCharIndex(itar); e.Graphics.DrawString(c.ToString(), this.richTextBox.SelectionFont, new SolidBrush(this.richTextBox.SelectionColor), point); } itar++; } }
'.Net > Winform' 카테고리의 다른 글
C# 선택영역 점선 표시 (1) | 2012.10.29 |
---|---|
C# Winform MDI(다중 문서 인터페이스)로 Form 띄우기 (0) | 2012.10.25 |
C# DataGridView 체크 유무 확인하기 (0) | 2012.09.25 |
C# Resource를 이용하여 프로그램에 이미지 포함하기 (0) | 2012.09.21 |
C# 투명한 Panel 띄우기 (2) | 2012.09.17 |