Skip to content
This repository has been archived by the owner on Oct 13, 2020. It is now read-only.

mnameghi/RTL-DataGridViewPrint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RTL DataGridViewPrint

RTL DataGridViewPrint provides simple right-to-left capability for printing a windows form datagridview content.By this way reporting is fast and simple. Your report printed with PrintDocument component.

Quick start

To get started, Add DataGridViewPrint.cs class to your project. On a form with DataGridView add a PrintDocument component and use follow code:

DataGridViewPrint dg = new DataGridViewPrint(dataGridView1, printDocument1);
dg.PageTitle.HeaderStr = "Title for report";
dg.PageTitle.SubTitle1 = "subtitle 1";
dg.PageTitle.SubTitle2 = "subtitle 2";
dg.PageTitle.TitleFont = new System.Drawing.Font("B Mitra", 12f);
dg.WrapText = false;
dg.PrinPreview();

Development

Contributors to RTL-DataGridViewPrint must agree the license by signing on the bottom of the CONTRIBUTORS.md file. To contribute:

  • fork the bootstrap-rtl repository.
  • make your changes
  • first time contributors: Sign CONTRIBUTORS.md by adding your github username, full name, email address, and first contribution date. As follows: YYYY/MM/DD, Github Username, Full Name, Email Address
  • commit your changes.
  • send a pull request.

Important Notice: Before submitting any pull request, please ensure that your changes merge cleanly with the main repository at mnameghi/RTL-DataGridViewPrint.

Feature requests, and bug fixes

If you want a feature or a bug fixed, report it via project's issues tracker. However, if it's something you can fix yourself, fork the project, do whatever it takes to resolve it, and finally submit a pull request. I will personally thank you, and add your name to the list of contributors.

Author

Mahdi Nameghi

Copyright and license

This code released under the MIT license.

About

Print rtl DataGridView content for better reporting.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published