回复 3楼未名账户的帖子
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;
复制代码
|