1楼好,我想你是想让FpSpread所有列的宽度自动适应其内容吧?
FpSpread没有一个单一的属性或方法做这件事。
你需要调用SheetView类的GetPreferredColumnWidth()方法或Column类的GetPreferredWidth()方法得到每列的最大列宽,然后将其设置给每一列。
一个例子代码:
for (int i = 0; i < this.fpSpread1.ActiveSheet.ColumnCount; i++)
{
float fitColumnWidth = this.fpSpread1.ActiveSheet.GetPreferredColumnWidth(i);
this.fpSpread1.ActiveSheet.Columns.Width = fitColumnWidth;
} |