回复 1楼guxinghan的帖子
Spread for ASP.NET 通过 Cell 下的 Note 属性添加注释:
- FarPoint.Web.Spread.Cell mycell;
- FarPoint.Web.Spread.Inset margin = new FarPoint.Web.Spread.Inset(20,40,50,20);
- mycell = FpSpread1.Cells[0,0];
- mycell.Text="Note Test";
- mycell.Locked=true;
- mycell.Margin=margin;
- mycell.Note="This is the Note";
- FpSpread1.ActiveSheetView.Rows[0].Height=80;
复制代码
在浏览器中会渲染成 html td 的 title 属性。
目前还不支持右上角显示 note 指示器(小箭头)。
移除也需要通过 Cell 下的 Note 属性,设置为空字符串即可。 |