Reputation: 1
I'm creating a C# Windows application in which I have to print a fixed header and footer and the contents of a DataGridView in between them. Is it possible to print it?
Upvotes: 0
Views: 633
Reputation: 94625
You can use Print
(Check out the documentation for PrintPage and PrintDocument) and Drawing
API which is available with the .net framework.
Upvotes: 1