Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 PHPExcel 中,是否可以仅根据单个单元格的值自动调整列?
假设您在单元格 A1 中有一个标题,您通常不希望自动调整大小,因为它太大了。因此,您可能只想根据 A2、B2、C2 等进行自动调整。不幸的是getColumnDimension('A1')->setAutoSize(true),无法完成这项工作。谢谢。
getColumnDimension('A1')->setAutoSize(true)
不,自动调整大小基于列中的所有单元格工作,因为它适用于列。
如果您想以任何其他方式设置列宽,您需要编写自己的函数来计算该列中您想要的所有单元格的最大宽度,然后将列宽设置为该值。