Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Spreadsheet::ParseXLSX::Cell - wrapper class around Spreadsheet::ParseExcel::Cell

Author

       Jesse Luehrs <doy@tozt.net>

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

See Also