Spreadsheet::ParseXLSX::Cell - wrapper class around Spreadsheet::ParseExcel::Cell
Contents
Copyright And License
This software is Copyright (c) 2025 by Jesse Luehrs.
This is free software, licensed under:
The MIT (X11) License
perl v5.40.0 2025-01-26 Spreadsheet::ParseXLSX::Cell(3pm)
Methods
is_merged($sheet,$row,$col)
Returns true if the cell is merged being part of the given sheet, located at the given row and column.
Returns undef if the current cell is not connected to any sheet:
$sheet defaults to the cell's "{Sheet}" property, $row to "{Row}" and $col to the "{Col}".
Name
Spreadsheet::ParseXLSX::Cell - wrapper class around Spreadsheet::ParseExcel::Cell
Synopsis
use Spreadsheet::ParseXLSX::Cell;
my $cell = Spreadsheet::ParseXLSX::Cell->new(
Sheet => $sheet,
Row => $row,
Col => $row,
...
);
my $isMerged = $cell->is_merged();
# see Spreadsheet::ParseExcel::Cell for further documentation
Version
version 0.36
