Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Print a Winform/visual element

Tags:

c#

winforms

All the articles I've found via google are either obsolete or contradict one another.

What's the easiest way to print a form or, say, a richtextbox in c#? I think it's using the PrintDiaglog class by setting the Document, but how does this get converted?

like image 825
Tarks Avatar asked Aug 07 '08 20:08

Tarks


1 Answers

At least in VS 2008, its very easy. It took me about a couple of minutes to code the answer after reading your question. Here's where I borrowed it from:

http://msdn.microsoft.com/en-us/library/6he9hz8c.aspx

I tested this, and it works.

like image 63
Vaibhav Avatar answered Nov 11 '22 14:11

Vaibhav