回复 1楼babyface的帖子
babyface 你好,
可以通过以下代码设置默认单元格,并且通过 textcelltype 设置最大长度,MaxLength 属性为 Int32 性,无法设置为无限长度。
- private void Form4_Load(object sender, EventArgs e)
- {
- FarPoint.Win.Spread.CellType.TextCellType txt = new FarPoint.Win.Spread.CellType.TextCellType();
- txt.MaxLength = 100;
- txt.Multiline = true;
- this.fpSpread1.Sheets[0].DefaultStyle.CellType = txt;
- }
复制代码 |