このページは既にアーカイブ化され、その後の更新はありません。

この製品の販売は終了しました。

.NET Print Objects(英語版)

Visual Studio .NETアプリケーションに印刷、印刷プレビュー機能を追加できます。

Softgroup 社の製品
2007 年より日本国内にてComponentSourceで販売中。

.NET Print Objects について

Visual Studio .NETアプリケーションに印刷、印刷プレビュー機能を追加できます。

Softgroup .Net Print Objectsは、多くのVisual Studio .NETコントロールに印刷と印刷プレビュー機能のサポートを提供します。印刷と印刷プレビュー機能のサポートは、DataGrid, DataGridView, ListView, TreeView, RichTextBox, Forms, Images, ListBox, CheckedListBox等に提供されています。Visual Studio 2005および2008と互換性(VS2005、VS2008)。VB.NETとC#のサンプルが含まれています。すべてのライセンスは12ヶ月のサブスクリプションが含まれています。ソースコードは、サイトワイドライセンスに含まれています。

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.