此页已归档,不再被更新。

我们已经停止贩售这个产品。

.NET Print Objects

Add print and print preview to your Visual Studio .NET applications.

由以下开发商制作:Softgroup
ComponentSource开始代理销售的日期:2007年

.NET Print Objects 关于

Add print and print preview to your Visual Studio .NET applications.

Softgroup .Net Print Objects provide support for print and print preview for many Visual Studio .NET controls. Print and Print Preview support is provided for DataGrid, DataGridView, ListView, TreeView, RichTextBox, Forms, Images, ListBox, CheckedListBox and more. Visual Studio 2005 and 2008 compatible (VS2005, VS2008). VB.NET and C# (CSharp) samples included. All licenses include 12 Months Subscription. Source Code Included with Site Wide Licenses.

Sofgroup .Net Print Objects is a fast, small and lightweight .Net library that provide print and preview for most common used .Net controls.

.Net Print Objects currently supports:

  • CheckedListBox
  • DataGrid
  • DataGridView
  • Forms
  • Images
  • ListBox
  • ListView
  • TreeView
  • RichTextBox

Support features:

  • Display Print Preview window as standard dialog
  • Display Print Preview window as MDI child window
  • Display printer setup dialog
  • Display page setup dialog
  • Full control of window state, size and position of preview dialog
  • Full control of page margins
  • Multilanguage support of any text displayed
  • Customize any print header text aspect (font, color and location)
  • Customize any print footer text aspect (font, color and location)
  • Customize page numbers text aspect (font, color and location)

Few lines of code are required to print any supported control as sample below:

Private Sub PrintPreview()

         oPrint = New Softgroup.PrintPreview(“”,””,””)

         oPrint.Control = ListView1

         oPrint.DocumentPreviewDialog()

End Sub

 

Private Sub NormalPrint()

         oPrint = New Softgroup.PrintPreview(“”,””,””)

         oPrint.Control = DataGridView1

         oPrint.DocumentPrint()

End Sub

Same code can be used to print all other supported controls.