以下代码在Spread for WinForms 5.0 和6.0中都会显示一个空白网页:
- private void Form1_Load(object sender, EventArgs e)
- {
- FarPoint.Win.Spread.CellType.HyperLinkCellType hlct = new FarPoint.Win.Spread.CellType.HyperLinkCellType();
- hlct.Text = "bbbbbbb";
- fpSpread1.ActiveSheet.Columns[0].CellType = hlct;
- }
复制代码
所以,不太清楚你这边是如何设置的代码,如何在5.0和6.0中存在这样的差异。 |