Click here to Skip to main content
15,887,313 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
DGVPrinter Printer = new DGVPrinter();
Printer.Title = txtDateSrch.Text + "";
Printer.SubTitle = string.Format(DateTime.Now.ToString("dd-MM-yyyy"));
Printer.SubTitleFormatFlags = StringFormatFlags.LineLimit | StringFormatFlags.NoClip;
Printer.PageNumbers = true;
Printer.PageNumberInHeader = false;
Printer.PorportionalColumns = true;
Printer.HeaderCellAlignment = StringAlignment.Near;
Printer.Footer = "";
Printer.FooterSpacing = 18;
Printer.PrintDataGridView(dataGridView1);

What I have tried:

i need to change (Printer.FooterFont) it but can not make this if you known pls. write me .thanks
Posted
Updated 2-Dec-22 13:21pm

1 solution

Your going to have to ask the person who wrote the code.

If it was from an article here, ask your question in the forum at the bottom of the article.

If it was from something like GitHub, you'll have to ask the author on their GitHub page.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900