找回密码
 立即注册

QQ登录

只需一步,快速开始

study1990
金牌服务用户   /  发表于:2012-6-29 13:46:00
11#
回复 10楼dof的帖子

怎么修改此默认值?
回复 使用道具 举报
ZenosZeng讲师达人认证 悬赏达人认证
超级版主   /  发表于:2012-6-29 15:34:00
12#
回复 11楼study1990的帖子

在Spread中可以通过以下两个属性取到数据区域的最大行数和列数,至于导出时的行列数需要设置RowCount和ColumnCount来控制:
  1. FpSpread1.Sheets[0].NonEmptyColumnCount
  2. FpSpread1.Sheets[0].NonEmptyRowCount
复制代码
回复 使用道具 举报
study1990
金牌服务用户   /  发表于:2012-6-29 16:09:00
13#
回复 12楼dof的帖子

搞定。。。O(∩_∩)O谢谢
回复 使用道具 举报
ZenosZeng讲师达人认证 悬赏达人认证
超级版主   /  发表于:2012-6-29 17:08:00
14#
OK
回复 使用道具 举报
study1990
金牌服务用户   /  发表于:2012-7-3 08:37:00
15#
回复 14楼dof的帖子

pdf打印的列数有限,怎样缩放打印比例?
回复 使用道具 举报
study1990
金牌服务用户   /  发表于:2012-7-3 09:17:00
16#
回复 14楼dof的帖子

会了。。。PrintInfo.ZoomFactor = 2;是放大2倍打印的
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-7-3 09:24:00
17#
回复 16楼study1990的帖子

:strong:好的,了解~
回复 使用道具 举报
study1990
金牌服务用户   /  发表于:2012-7-3 09:34:00
18#
回复 17楼iceman的帖子

怎样根据有数据的列自动放缩打印在一页中?
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-7-3 10:49:00
19#
回复 18楼study1990的帖子

测试代码:

  1.             this.FpSpread1.CommandBar.ShowPDFButton = true;
  2.             this.FpSpread1.Sheets[0].PageSize = 40;
  3.             this.FpSpread1.Sheets[0].ColumnCount = 50;
  4.             this.FpSpread1.Sheets[0].RowCount = 30;
  5.             for (int i = 0; i < 50; i++)
  6.             {
  7.                 for (int j = 0; j < 30; j++)
  8.                 {
  9.                     this.FpSpread1.Sheets[0].Cells[j, i].Text = i.ToString()+"列"+j.ToString()+"行";
  10.                 }
  11.             }
  12.             FarPoint.Web.Spread.PrintInfo prinf = new FarPoint.Web.Spread.PrintInfo();
  13.             FarPoint.Web.Spread.SmartPrintRulesCollection prules = new FarPoint.Web.Spread.SmartPrintRulesCollection();
  14.             prules.Add(new FarPoint.Web.Spread.SmartPaperRule(FarPoint.Web.Spread.ResetOption.None));
  15.             prinf.SmartPrintRules = prules;
  16.             prinf.UseSmartPrint = true;
  17.             FpSpread1.ActiveSheetView.PrintInfo = prinf;
复制代码
回复 使用道具 举报
study1990
金牌服务用户   /  发表于:2012-7-3 11:03:00
20#
回复 19楼iceman的帖子

好用。。谢谢
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部