in reply to Excel Strikeout
# this code works perfect and returns 0 or 1 my $isErased = $worksheet->Cells(1,2)->Font->{'Strikethrough'}; # but using 'Strikeover' in the code my $isErased = $worksheet->Cells(1,2)->Font->{'Strikeover'}; # causes the following ugly error message: # Win32::OLE(0.1707) error 0x80020003: "Member not found" # in METHOD/PROPERTYGET "Strikeover" at FONT-test.pl line 24
|
|---|