回复 3楼lichuang的帖子
好的,非常感谢您的反馈。确实这个方法可以实现。
另外,影响行高的因素还有字体的大小,包括行头字体和普通行字体。
您可以使用以下代码测试:
- CheckBoxCellType cbtype = new CheckBoxCellType();
- cbtype.Text = "ck";
- cbtype.CssClass = "ck";
- this.FpSpread1.ActiveSheetView.Cells[0, 0].CellType = cbtype;
- this.FpSpread1.ActiveSheetView.RowHeader.Columns[0].Font.Size = 3;
- this.FpSpread1.ActiveSheetView.Rows[0].Font.Size = 3;
- this.FpSpread1.ActiveSheetView.Rows[0].Height = 5;
复制代码
谢谢 |