It doesn't... But it does show how easy printing in .NET is.
I don't think there is a method like: ListView.Print() if you were looking
for that.
But If you know how to print in .NET then having two loops, looping through
the
rows and columns of the ListView should be very easy to do.
If you need this kind of functionality often I would probably create a
custom control:
public class MyListView : ListView
{
public void Print(Graphics g)
{ ... } // where "g" is the Graphics object from the
PrintDocument.Print eventhandler
}
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.