The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Spreadsheet::Simple::Row - an object that represents a single row in a spreadsheet.

METHODS

set_cell(Int $col, Cell $cell)

Set the value of a particular column to $cell.

cell_count()

Return the number of cells in a row. This is often meaningless as it will count empty cells.

get_cell(Int $col)

Returns a Spreadsheet::Simple::Cell at column $col.

This will never return undef. To detect undefined cells, use $cell->defined.

get_cell_value(Int $col)

Convenience method, returns the value of a given cell (which may be undef).

get_cell_values(@cols)

Convenience method, returns list of

cell_values()

Return all cell values in row.

AUTHOR

Dylan William Hardison

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Infinity Interactive, Inc.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.