版主:求教:spread控件绑定数据源,数据库字段值过长时想显示。。。,用下列语句不能实现:
FarPoint .Web.Spread.TextCellType TextCell=new FarPoint.Web.Spread.TextCellType() ;
TextCell.ShowEllipsis = true;
FpSpread1.Sheets[0].Columns[11].CellType = TextCell;
必须使用:FpSpread1.Sheets[0].Cells[行, 列].Text = 字段值;
FpSpread1.Sheets[0].Cells[行, 列].Note = 字段值;
这样必须遍历数据源记录和字段,有其他办法吗?
|
|