回复 1楼jingyuking的帖子
禁止这行代码如下:
- protected void Page_Load(object sender, EventArgs e)
- {
- if (IsPostBack)
- {
- return;
- }
- TextCellType tc = new TextCellType();
- tc.AllowWrap = false;
- tc.Multiline = false;
- this.FpSpread1.Sheets[0].Cells[0, 0].CellType = tc;
- this.FpSpread1.Sheets[0].Cells[0, 0].Text = "设置设置设置设置设置设置设置设置设置设置设置设置设置设置设置设置";
- }
复制代码 |