回复 1楼miao46825的帖子
你好,
1.设置 RestrictAll 的同时也需要指定需要合并的行、列的 AllowMerging 为 True 才生效,请检查是否设置正确?
- //this.c1FlexGrid1.AllowMerging = C1.Win.C1FlexGrid.AllowMergingEnum.RestrictAll;
- //this.c1FlexGrid1.Cols[1].AllowMerging = true;
复制代码
2.关于 导出固定行到 excel 可以,通过以下方法隐藏不需要倒出的列。
- this.c1FlexGrid1.Cols[1].Visible = false;
- this.c1FlexGrid1.Cols[2].Visible = false;
- this.c1FlexGrid1.SaveExcel(Application.StartupPath + "\\test.xls", "1", C1.Win.C1FlexGrid.FileFlags.AsDisplayed);
- this.c1FlexGrid1.Cols[1].Visible = true;
- this.c1FlexGrid1.Cols[2].Visible = true;
复制代码 |