回复 1楼hezhilin的帖子
需要设置 单元格类型为 TextCellType ,请通过以下代码测试。
- private void Form1_Load(object sender, EventArgs e)
- {
- FarPoint.Win.Spread.CellType.TextCellType txtype = new FarPoint.Win.Spread.CellType.TextCellType();
- this.fpSpread1.Sheets[0].DefaultStyle.CellType = txtype;
- }
复制代码 |