0

使用 Excel 互操作,我可以使用如下代码配置用于打印的工作表:

_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("${0}:${0}", CUSTOMER_HEADING_ROW);

我想我几乎可以用这段代码用电子表格光来模拟它:

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

// PrintTitleRows
ps.PrintHeadings = true;
ps.SetCenterHeaderText(String.Format("${0}:${0}", 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”)的替换代码,但Spreadsheet Light似乎完全缺少一件事,即“PrintArea”。

另外,“缩放”值应该是多少?什么对应于“FitToPagesWide”和“FitToPagesTall”?

使用 Spreadsheet Light 完成相同任务的类似方法是什么?还是电子表格灯只是根据非空单元格自动确定要打印的范围?

4

1 回答 1

1

我可以帮助其中一些。首先,打印区域。

正如文森特所说:规则 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 滚动。

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

对于打印标题,您可以使用 SLPageSettings 中的 Set<position>HeaderText:

settings.SetCenterHeaderText("My Workbook Title");

同样 SetLeftHeaderText 和 SetRightHeaderText

我不知道如何设置与 Interop 的 PrintTitleRows 匹配的“RowsToRepeatAtTop”和“ColumnsToRepeatAtLeft”。

ProTip:SpreadsheetLight 附带的 chm 帮助文件非常有用。

于 2017-02-20T08:54:06.413 回答