找回密码
 立即注册

QQ登录

只需一步,快速开始

cccdl
中级会员   /  发表于:2012-2-22 15:42  /   查看:6322  /  回复:3
excel可以选择一片区域,然后给它起个别名。
之后再用range("别名")就能选中那个区域。

spread 貌似没这个功能?
帮忙确认一下。
多谢。

3 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2012-2-22 15:58:00
沙发

回复 1# cccdl 的帖子

cccdl 你好,
创建 CellRange 实例后,可以使用 AddSelection 方法,通过 CellRange 属性去添加选择区域。参考代码:
  1.    FarPoint.Win.Spread.Model.CellRange test = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
  2.             fpSpread1.Sheets[0].AddSelection(test.Row, test.Column, test.RowCount, test.ColumnCount);
复制代码
回复 使用道具 举报
cccdl
中级会员   /  发表于:2012-2-23 08:51:00
板凳
我爱死你了~~
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2012-2-23 09:01:00
地板

回复 3# cccdl 的帖子

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