找回密码
 立即注册

QQ登录

只需一步,快速开始

guxinghan

论坛元老

14

主题

38

帖子

4996

积分

论坛元老

积分
4996

活字格认证

guxinghan
论坛元老   /  发表于:2014-9-19 17:15  /   查看:4274  /  回复:1
如题,还有如何删除注释,就像Excel里,单元格右上角的小箭头

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2014-9-22 14:15:00
沙发
回复 1楼guxinghan的帖子

Spread for ASP.NET 通过 Cell 下的 Note 属性添加注释:

  1. FarPoint.Web.Spread.Cell mycell;
  2. FarPoint.Web.Spread.Inset margin = new FarPoint.Web.Spread.Inset(20,40,50,20);
  3. mycell = FpSpread1.Cells[0,0];
  4. mycell.Text="Note Test";
  5. mycell.Locked=true;
  6. mycell.Margin=margin;
  7. mycell.Note="This is the Note";
  8. FpSpread1.ActiveSheetView.Rows[0].Height=80;
复制代码


在浏览器中会渲染成 html td 的 title 属性。
目前还不支持右上角显示 note 指示器(小箭头)。

移除也需要通过 Cell 下的 Note 属性,设置为空字符串即可。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部