in reply to Re^2: Problems setting Excel cell width
in thread Problems setting Excel cell width

ColumnWidth will do it.

To set:

$sheet -> Range("F4") -> {ColumnWidth} = 60;
To get:
my $columnwidth = $sheet -> Range("F4") -> {ColumnWidth};