user637215
user637215

Reputation: 1

Print records from DataGridView

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

Answers (1)

KV Prajapati
KV Prajapati

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

Related Questions