你试试下面的方式,您在文档中搜下Multiline, 里面还有很多。
- FarPoint.Win.Spread.CellType.GeneralEditor ge = (FarPoint.Win.Spread.CellType.GeneralEditor)fpSpread1.EditingControl;
- ge.BorderStyle = BorderStyle.Fixed3D;
- ge.MaximumLength = 40;
- ge.Multiline = true;
- ge.WordWrap = true;
复制代码 |