I am trying to print text from a single line or multiline text box.
This is what I have so far:
private void printStuff()
{
textBox1.Text = "Hello World";
PrintDialog printDialog = new PrintDialog();
if (printDialog.ShowDialog() == DialogResult.OK)
{
//???
}
} // End private void printStuff()
How is that done?
Can I choose the font and size?
Thanks.

