cell 的类型设置为FarPoint.Web.Spread.TextCellType(),如果不设置允许多行,那么长度能够限制,如果设置了允许多行(Multiline = true),那么长度限制不起作用,如何能在允许多行的情况下进行输入长度限制呢?因为不设置允许多行,那么在更改时所有文字变成一行,很不方便。
一下是允许多行的代码:
public FarPoint.Web.Spread.TextCellType gc = new FarPoint.Web.Spread.TextCellType();
gc.MaxLength = 100;
gc.ErrorMessage = "输入过长";
gc.AllowWrap = true;
gc.Multiline = true;
|
|