你好,
1. text 的对齐方式可以通过以下代码进行设置:- this.FpSpread1.ActiveSheetView.Columns[0].HorizontalAlign = HorizontalAlign.Right;
- this.FpSpread1.ActiveSheetView.Columns[0].VerticalAlign = VerticalAlign.Bottom;
复制代码 2.如果你所指的 text 宽度是指 TextCellType 的 MaxLength 属性的话,这个属性只能限制在运行时输入的字符串长度,而不能限制在设计时通过代码添加的字符串长度. |