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::ParseODS::Workbook - a workbook

->filename

  print $workbook->filename;

The name of the file if applicable.

->table_styles

The styles that identify whether a table is hidden, and other styles

get_print_areas()

    my $print_areas = $workbook->get_print_areas();
    # [[ [$start_row, $start_col, $end_row, $end_col], ... ]]

The ->get_print_areas() method returns the print areas of each sheet as an arrayref of arrayrefs. If a sheet has no print area, undef is returned for its print area.