logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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