如何使用 Spreadsheet Light 配置 sheet 的打印区域和其他打印属性?

How can I configure the print area and other printing properties of a sheet using Spreadsheet Light?

使用 Excel Interop,我可以配置 sheet 以使用如下代码进行打印:

_xlSheetPlatypus.PageSetup.PrintArea = "A1:" + 
    GetExcelTextColumnName(
        _xlSheetPlatypus.UsedRange.Columns.Count) + 
        _xlSheetPlatypus.UsedRange.Rows.Count;
_xlSheetPlatypus.PageSetup.Orientation = Excel.XlPageOrientation.xlLandscape;
_xlSheetPlatypus.PageSetup.Zoom = false;
_xlSheetPlatypus.PageSetup.FitToPagesWide = 1;
_xlSheetPlatypus.PageSetup.FitToPagesTall = 100;

_xlSheetPlatypus.PageSetup.LeftMargin = _xlApp.Application.InchesToPoints(0.5);
_xlSheetPlatypus.PageSetup.RightMargin = _xlApp.Application.InchesToPoints(0.5);
_xlSheetPlatypus.PageSetup.TopMargin = _xlApp.Application.InchesToPoints(0.5);
_xlSheetPlatypus.PageSetup.BottomMargin = _xlApp.Application.InchesToPoints(0.5);
_xlSheetPlatypus.PageSetup.HeaderMargin = _xlApp.Application.InchesToPoints(0.5);
_xlSheetPlatypus.PageSetup.FooterMargin = _xlApp.Application.InchesToPoints(0.5);

_xlSheetPlatypus.PageSetup.PrintTitleRows = String.Format("[=11=]:[=11=]", CUSTOMER_HEADING_ROW);

我想我可以用 Spreadsheet Light 用这段代码来模拟它:

SLPageSettings ps = new SLPageSettings();
// PrintArea
// ???

// PrintTitleRows
ps.PrintHeadings = true;
ps.SetCenterHeaderText(String.Format("[=12=]:[=12=]", CUSTOMER_HEADING_ROW); 

// Margins
ps.SetNarrowMargins();
ps.TopMargin = 0.5;
ps.BottomMargin = 0.5;
ps.LeftMargin = 0.5;
ps.RightMargin = 0.5;
ps.HeaderMargin = 0.5;
ps.FooterMargin = 0.5;

// Orientation
ps.Orientation = OrientationValues.Landscape;

// Zoom
//psByCust.ZoomScale = what should this be? Is not a boolean...

// FitToPagesWide
//psByCust.FitToWidth = ; "cannot be assigned to" so how can I set this?

// FitToPagesTall
//psByCust.FitToHeight = 100; "cannot be assigned to" so how can I set this?

不过,我不确定其中的许多内容,尤其是 "PrintTitleRows"("PrintHeadings" 和 "SetCenterHeaderText")的替换代码,但有一件事似乎完全缺失传播sheet光,即"PrintArea".

此外,"Zoom" 值应该是多少? "FitToPagesWide"和"FitToPagesTall"对应的是什么?

用 Spreadsheet Light 完成同样事情的类似方法是什么?还是 Spreadsheet Light 只是根据非空单元格自动确定要打印的范围?

我可以帮忙解决其中的一些问题。首先,打印区域。

作为 Vincent says:规则 1:一切都以 SLDocument

开始和结束
SLDocument myWorkbook = new SLDocument();
myWorkbook.SetPrintArea("A1", "E10");
// or
myWorkbook.SetPrintArea(1, 1, 10, 5);

下一页:适合页面:

SLPageSettings settings = new SLPageSettings();
settings.ScalePage(2, 3)  // print 2 pages wide and 3 long
// There is no info on how to just scale in one dimension, I would use 
// a definitely too big™ number in the field you don't care about
// Eg for fit all columns on one page:
settings.ScalePage(1, 99999); 

缩放是一种视图(不是打印)东西 AFAIK,可以在 10 到 400 之间更改以设置缩放百分比 - 相当于查看电子表格时 Ctrl-scrolling。

PrintHeadings 在打印时显示行 (1, 2, 3, ...) 和列标题 (A, B, C, ...),因此您可以更轻松地查看 D25 中的值。

要打印标题,请使用 SLPageSettings 中的 SetHeaderText:

settings.SetCenterHeaderText("My Workbook Title");

类似 SetLeftHeaderText 和 SetRightHeaderText

我不知道如何设置 'RowsToRepeatAtTop' 和 'ColumnsToRepeatAtLeft' 以匹配 Interop 的 PrintTitleRows。

提示:SpreadsheetLight 自带的 chm 帮助文件非常有用。