你好,设置 Spread ClientAutoSize 属性为 true 可以实现该效果:
测试代码:
- this.FpSpread1.ClientAutoSize = true;
- this.FpSpread1.ActiveSheetView.PageSize = 40;
- this.FpSpread1.ActiveSheetView.RowCount = 40;
- this.FpSpread1.ActiveSheetView.ColumnCount = 10;
复制代码 提示:Spread PageSize 属性默认为 10 行,在默认情况下,如果行数超过 10 ,就会自动分页,所以可以配合 ClientAutoSize 和 PageSize 属性去实现该效果。 |