Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Spreadsheet::XLSX::Fmt2007

Name Spreadsheet::XLSX::Fmt2007
Version 0.17
Located at /usr/share/perl5
File /usr/share/perl5/Spreadsheet/XLSX/Fmt2007.pm
Is Core No
Search CPAN for this module Spreadsheet::XLSX::Fmt2007
Documentation Spreadsheet::XLSX::Fmt2007
Module Details Spreadsheet::XLSX::Fmt2007

SYNOPSIS

                $cell = $myworkbook->worksheet->{Cells}[$row][$col]
                my $type       = $cell->{Type}; # Date, Text, or Numeric
                my $disp_value = $cell->Value;  # displayed (formatted) value set in XLSX by $myFmt2007->ValFmt($cell, $workbook)
                my $fund_value = $cell->{Val};  # fundemental (underlying) value
                my $formatter;
                if ($myworkbook->excel07) {
                        $formatter=Spreadsheet::XLSX::Fmt2007->new();
                } else {
                        $formatter=Spreadsheet::ParseExcel::FmtDefault->new();
                }  
                my $format_string = $formatter->FmtString($cell,$self->workbook);

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026