News & Releases

Minimize
Nasosoft Component for .NET v4.0.0 Released - Friday, April 20, 2012

Nasosoft Component for .NET v4.0.0 has released with many improvements.

Nasosoft Component for .NET is a suite of comprehensive .NET controls, including EXCEL, PDF, and RTF document format engines, RTF to HTML, HTML to RTF, RTF to TEXT, HTML to TEXT document transform engines and ZIP, GZIP, TAR compression.

What's new

  • Nasosoft Barcodes
    • Support different types of industry standards 1D and 2D Barcodes.
    • Support XML serialization and deserialization.
    • Support different types of image formats, like jpeg, bitmap, png, and etc.
    • Support metafile image format.
  • Nasosoft PDF
    • Support drawing barcodes image in PDF file with Nasosoft.Barcodes.
    • Fixed several bugs in PdfDocumentEditor.

 How to Download

 
 

Nasosoft Excel for .NET

   Minimize
Print a Worksheet
Set Print Area
Code Sample
[C#]
 
//Create a Workbook object
XlsWorkbook workbook = new XlsWorkbook();
 
//Get the page setup of the worksheet
XlsPageSetup pageSetup = workbook.Worksheets[0].PageSetup;
 
//Set the area of the worksheet to print
pageSetup.PrintArea = "A1:D20";
 
[VB.NET]
 
'Create a Workbook object
Dim workbook As XlsWorkbook = New XlsWorkbook ()
 
'Get the page setup of the worksheet
Dim pageSetup As XlsPageSetup = workbook.Worksheets(0).PageSetup
 
'Set the area of the worksheet to print
pageSetup.PrintArea = "A1:D20"
 
Set Print Tile
Code Sample
[C#]
 
//Create a Workbook object
XlsWorkbook workbook = new XlsWorkbook();
 
//Get the page setup of the worksheet
XlsPageSetup pageSetup = workbook.Worksheets[0].PageSetup;
 
//Set print title columns
pageSetup.PrintTitleColumns = "$A:$B";
 
//Set print title rows
pageSetup.PrintTitleRows = "$1:$2";
 
[VB.NET]
 
'Create a Workbook object
Dim workbook As XlsWorkbook = New XlsWorkbook ()
 
'Get the page setup of the worksheet
Dim pageSetup As XlsPageSetup = workbook.Worksheets(0).PageSetup
 
'Set print title columns
pageSetup.PrintTitleColumns = "$A:$B"
 
'Set print title rows
pageSetup.PrintTitleRows = "$1:$2"