Click or drag to resize

ExcelToPdfCSheetPrintArea Property

Set custom cells which will be exported into PDF or Word.

Namespace: SautinSoft
Assembly: SautinSoft.ExcelToPdf (in SautinSoft.ExcelToPdf.dll) Version: 2023.11.22
Syntax
public ExcelToPdfCSheetPrintedArea PrintArea { get; set; }

Property Value

ExcelToPdfCSheetPrintedArea
Example
SautinSoft.ExcelToPdf x = new SautinSoft.ExcelToPdf();
x.OutputFormat = SautinSoft.ExcelToPdf.eOutputFormat.Pdf;
int[] arJ = { 1 };
x.Sheets.PrintArea.Add("B20", "D25", arJ);
See Also