回复 1楼kangqy的帖子
你好,请使用下面代码测试:
- protected void Page_Load(object sender, EventArgs e)
- {
- if (IsPostBack)
- {
- return;
- }
- this.FpSpread1.Sheets[0].ColumnCount = 30;
- this.FpSpread1.Sheets[0].FrozenColumnCount = 2;
- this.FpSpread1.TitleInfo.Text = "title 测试";
- this.FpSpread1.TitleInfo.Visible = true;
- }
复制代码 |