使用API说明书中的例子如下:
FpSpreadPrint.Sheets[0].ColumnCount = 7;
FpSpreadPrint.Sheets[0].RowCount = 50;
FarPoint.Web.Spread.Cell mycell = null;
mycell = FpSpreadPrint.Cells[0, 0];
mycell.ColumnSpan = 4;
mycell.RowSpan = 4;
前台展示合并的第一行高度变为了合并总行的高度加被合并行的高度,致使打印格式不好控制,请见附件,谢谢! |
|