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
}
But I may be wrong and there is an easier way...
saso