采用下列方法给单元格赋值发现内在消耗较大(v12),有没有更简单且内存消耗小的方法?
vTextCell = new FarPoint.Win.Spread.CellType.TextCellType();
vTextCell.WordWrap = true;
vTextCell.Multiline = true;
vTextCell.MaxLength = 1000;
vTextCell.StringTrim = StringTrimming.Word;
nCell.CellType = vTextCell;
nCell.Value = sValue;
|
|