.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.32 .\" .\" Standard preamble: .\" ======================================================================== .de Sh \" Subsection heading .br .if t .Sp .ne 5 .PP \fB\\$1\fR .PP .. .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. | will give a .\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to .\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' .\" expand to `' in nroff, nothing in troff, for use with C<>. .tr \(*W-|\(bv\*(Tr .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\} .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} .\" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .hy 0 .if n .na .\" .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Fear. Run. Save yourself. No user-serviceable parts. . \" fudge factors for nroff and troff .if n \{\ . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] \fP .\} .if t \{\ . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff .if n \{\ . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} .if t \{\ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' .ds 8 \h'\*(#H'\(*b\h'-\*(#H' .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] .ds ae a\h'-(\w'a'u*4/10)'e .ds Ae A\h'-(\w'A'u*4/10)'E . \" corrections for vroff .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' . \" for low resolution devices (crt and lpr) .if \n(.H>23 .if \n(.V>19 \ \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} .rm #[ #] #H #V #F C .\" ======================================================================== .\" .IX Title "Spreadsheet::ParseExcel 3" .TH Spreadsheet::ParseExcel 3 "2008-01-01" "perl v5.8.8" "User Contributed Perl Documentation" .SH "NAME" Spreadsheet::ParseExcel \- Get information from Excel file .SH "SYNOPSIS" .IX Header "SYNOPSIS" \&\fInew interface\fR .PP .Vb 2 \& use strict; \& use Spreadsheet::ParseExcel; .Ve .PP .Vb 14 \& my $excel = Spreadsheet::ParseExcel::Workbook->Parse($file); \& foreach my $sheet (@{$excel->{Worksheet}}) { \& printf("Sheet: %s\en", $sheet->{Name}); \& $sheet->{MaxRow} ||= $sheet->{MinRow}; \& foreach my $row ($sheet->{MinRow} .. $sheet->{MaxRow}) { \& $sheet->{MaxCol} ||= $sheet->{MinCol}; \& foreach my $col ($sheet->{MinCol} .. $sheet->{MaxCol}) { \& my $cell = $sheet->{Cells}[$row][$col]; \& if ($cell) { \& printf("( %s , %s ) => %s\en", $row, $col, $cell->{Val}); \& } \& } \& } \& } .Ve .PP \&\fIold interface\fR use strict; use Spreadsheet::ParseExcel; my \f(CW$oExcel\fR = Spreadsheet::ParseExcel\->new; .PP .Vb 19 \& #1.1 Normal Excel97 \& my $oBook = $oExcel->Parse('Excel/Test97.xls'); \& my($iR, $iC, $oWkS, $oWkC); \& print "FILE :", $oBook->{File} , "\en"; \& print "COUNT :", $oBook->{SheetCount} , "\en"; \& print "AUTHOR:", $oBook->{Author} , "\en"; \& for(my $iSheet=0; $iSheet < $oBook->{SheetCount} ; $iSheet++) { \& $oWkS = $oBook->{Worksheet}[$iSheet]; \& print "--------- SHEET:", $oWkS->{Name}, "\en"; \& for(my $iR = $oWkS->{MinRow} ; \& defined $oWkS->{MaxRow} && $iR <= $oWkS->{MaxRow} ; $iR++) { \& for(my $iC = $oWkS->{MinCol} ; \& defined $oWkS->{MaxCol} && $iC <= $oWkS->{MaxCol} ; $iC++) { \& $oWkC = $oWkS->{Cells}[$iR][$iC]; \& print "( $iR , $iC ) =>", $oWkC->Value, "\en" if($oWkC); # Formatted Value \& print "( $iR , $iC ) =>", $oWkC->{Val}, "\en" if($oWkC); # Original Value \& } \& } \& } .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" Spreadsheet::ParseExcel makes you to get information from Excel95, Excel97, Excel2000 file. .Sh "Functions" .IX Subsection "Functions" .IP "new" 4 .IX Item "new" \&\fI$oExcel\fR = Spreadsheet::ParseExcel\->new( [ \fICellHandler\fR => \e&subCellHandler, \fINotSetCell\fR => undef | 1, ]); .Sp Constructor. .RS 4 .IP "CellHandler \fI(experimental)\fR" 4 .IX Item "CellHandler (experimental)" specify callback function when a cell is detected. .Sp \&\fIsubCellHandler\fR gets arguments like below: .Sp sub subCellHandler (\fI$oBook\fR, \fI$iSheet\fR, \fI$iRow\fR, \fI$iCol\fR, \fI$oCell\fR); .Sp \&\fB\s-1CAUTION\s0\fR : The atributes of Workbook may not be complete. This function will be called almost order by rows and columns. Take care \fBalmost\fR, \fInot perfectly\fR. .IP "NotSetCell \fI(experimental)\fR" 4 .IX Item "NotSetCell (experimental)" specify set or not cell values to Workbook object. .RE .RS 4 .RE .IP "Parse" 4 .IX Item "Parse" \&\fI$oWorkbook\fR = \f(CW$oParse\fR\->Parse(\fI$sFileName\fR [, \fI$oFmt\fR]); .Sp return \*(L"Workbook\*(R" object. if error occurs, returns undef. .RS 4 .IP "\fI$sFileName\fR" 4 .IX Item "$sFileName" name of the file to parse .Sp From 0.12 (with OLE::Storage_Lite v.0.06), scalar reference of file contents (ex. \e$sBuff) or IO::Handle object (inclucdng IO::File etc.) are also available. .IP "\fI$oFmt\fR" 4 .IX Item "$oFmt" \&\*(L"Formatter Class\*(R" to format the value of cells. .RE .RS 4 .RE .IP "ColorIdxToRGB" 4 .IX Item "ColorIdxToRGB" \&\fI$sRGB\fR = \f(CW$oParse\fR\->ColorIdxToRGB(\fI$iColorIdx\fR); .Sp \&\fIColorIdxToRGB\fR returns \s-1RGB\s0 string corresponding to specified color index. \&\s-1RGB\s0 string has 6 charcters, representing \s-1RGB\s0 hex value. (ex. red = '\s-1FF0000\s0') .Sh "Workbook" .IX Subsection "Workbook" \&\fISpreadsheet::ParseExcel::Workbook\fR .PP Workbook class has these methods : .IP "Parse" 4 .IX Item "Parse" (class method) : same as Spreadsheet::ParseExcel .IP "Worksheet" 4 .IX Item "Worksheet" \&\fI$oWorksheet\fR = \f(CW$oBook\fR\->Worksheet(\fI$sName\fR); .Sp \&\fIWorksheet\fR returns a Worksheet object with \fI$sName\fR or undef. If there is no worksheet with \fI$sName\fR and \fI$sName\fR contains only digits, it returns a Worksheet object at that position. .PP Workbook class has these properties : .IP "File" 4 .IX Item "File" Name of the file .IP "Author" 4 .IX Item "Author" Author of the file .IP "Flg1904" 4 .IX Item "Flg1904" If this flag is on, date of the file count from 1904. .IP "Version" 4 .IX Item "Version" Version of the file .IP "SheetCount" 4 .IX Item "SheetCount" Numbers of \*(L"Worksheet\*(R" s in that Workbook .IP "Worksheet[SheetNo]" 4 .IX Item "Worksheet[SheetNo]" Array of \*(L"Worksheet\*(R"s class .IP "PrintArea[SheetNo]" 4 .IX Item "PrintArea[SheetNo]" Array of PrintArea array refs. .Sp Each PrintArea is : [ \fIStartRow\fR, \fIStartColumn\fR, \fIEndRow\fR, \fIEndColumn\fR] .IP "PrintTitle[SheetNo]" 4 .IX Item "PrintTitle[SheetNo]" Array of PrintTitle hash refs. .Sp Each PrintTitle is : { Row => [\fIStartRow\fR, \fIEndRow\fR], Column => [\fIStartColumn\fR, \fIEndColumn\fR]} .Sh "Worksheet" .IX Subsection "Worksheet" \&\fISpreadsheet::ParseExcel::Worksheet\fR .PP Worksheet class has these methods: .IP "Cell ( \s-1ROW\s0, \s-1COL\s0 )" 4 .IX Item "Cell ( ROW, COL )" Return the Cell iobject at row \s-1ROW\s0 and column \s-1COL\s0 if it is defined. Otherwise return undef. .IP "RowRange ()" 4 .IX Item "RowRange ()" Return a two-element list (\s-1MIN\s0, \s-1MAX\s0) containing the minimum and maximum of defined rows in the worksheet If there is no row defined \s-1MAX\s0 is smaller than \s-1MIN\s0. .IP "ColRange ()" 4 .IX Item "ColRange ()" Return a two-element list (\s-1MIN\s0, \s-1MAX\s0) containing the minimum and maximum of defined columns in the worksheet If there is no row defined \s-1MAX\s0 is smaller than \s-1MIN\s0. .PP Worksheet class has these properties: .IP "Name" 4 .IX Item "Name" Name of that Worksheet .IP "DefRowHeight" 4 .IX Item "DefRowHeight" Default height of rows .IP "DefColWidth" 4 .IX Item "DefColWidth" Default width of columns .IP "RowHeight[Row]" 4 .IX Item "RowHeight[Row]" Array of row height .IP "ColWidth[Col]" 4 .IX Item "ColWidth[Col]" Array of column width (undef means DefColWidth) .IP "Cells[Row][Col]" 4 .IX Item "Cells[Row][Col]" Array of \*(L"Cell\*(R"s infomation in the worksheet .IP "Landscape" 4 .IX Item "Landscape" Print in \fIhorizontal\fR\|(0) or vertical (1). .IP "Scale" 4 .IX Item "Scale" Print scale. .IP "FitWidth" 4 .IX Item "FitWidth" Number of pages with fit in width. .IP "FitHeight" 4 .IX Item "FitHeight" Number of pages with fit in height. .IP "PageFit" 4 .IX Item "PageFit" Print with fit (or not). .IP "PaperSize" 4 .IX Item "PaperSize" Papar size. The value is like below: .Sp .Vb 14 \& Letter 1, LetterSmall 2, Tabloid 3 , \& Ledger 4, Legal 5, Statement 6 , \& Executive 7, A3 8, A4 9 , \& A4Small 10, A5 11, B4 12 , \& B5 13, Folio 14, Quarto 15 , \& 10x14 16, 11x17 17, Note 18 , \& Envelope9 19, Envelope10 20, Envelope11 21 , \& Envelope12 22, Envelope14 23, Csheet 24 , \& Dsheet 25, Esheet 26, EnvelopeDL 27 , \& EnvelopeC5 28, EnvelopeC3 29, EnvelopeC4 30 , \& EnvelopeC6 31, EnvelopeC65 32, EnvelopeB4 33 , \& EnvelopeB5 34, EnvelopeB6 35, EnvelopeItaly 36 , \& EnvelopeMonarch 37, EnvelopePersonal 38, FanfoldUS 39 , \& FanfoldStdGerman 40, FanfoldLegalGerman 41, User 256 .Ve .IP "PageStart" 4 .IX Item "PageStart" Start page number. .IP "UsePage" 4 .IX Item "UsePage" Use own start page number (or not). .IP "LeftMergin, RightMergin, TopMergin, BottomMergin, HeaderMergin, FooterMergin" 4 .IX Item "LeftMergin, RightMergin, TopMergin, BottomMergin, HeaderMergin, FooterMergin" Mergins for left, right, top, bottom, header and footer. .IP "HCenter" 4 .IX Item "HCenter" Print in horizontal center (or not) .IP "VCenter" 4 .IX Item "VCenter" Print in vertical center (or not) .IP "Header" 4 .IX Item "Header" Content of print header. Please refer Excel Help. .IP "Footer" 4 .IX Item "Footer" Content of print footer. Please refer Excel Help. .IP "PrintGrid" 4 .IX Item "PrintGrid" Print with Gridlines (or not) .IP "PrintHeaders" 4 .IX Item "PrintHeaders" Print with headings (or not) .IP "NoColor" 4 .IX Item "NoColor" Print in black-white (or not). .IP "Draft" 4 .IX Item "Draft" Print in draft mode (or not). .IP "Notes" 4 .IX Item "Notes" Print with notes (or not). .IP "LeftToRight" 4 .IX Item "LeftToRight" Print left to \fIright\fR\|(0) or top to \fIdown\fR\|(1). .IP "HPageBreak" 4 .IX Item "HPageBreak" Array ref of horizontal page breaks. .IP "VPageBreak" 4 .IX Item "VPageBreak" Array ref of vertical page breaks. .IP "MergedArea" 4 .IX Item "MergedArea" Array ref of merged areas. Each merged area is : [ \fIStartRow\fR, \fIStartColumn\fR, \fIEndRow\fR, \fIEndColumn\fR] .Sh "Cell" .IX Subsection "Cell" \&\fISpreadsheet::ParseExcel::Cell\fR .PP Cell class has these properties: .IP "Value" 4 .IX Item "Value" \&\fIMethod\fR Formatted value of that cell .IP "Val" 4 .IX Item "Val" Original Value of that cell .IP "Type" 4 .IX Item "Type" Kind of that cell ('Text', 'Numeric', 'Date') .IP "Code" 4 .IX Item "Code" Character code of that cell (undef, 'ucs2', '_native_') undef tells that cell seems to be ascii. \&'_native_' tells that cell seems to be 'sjis' or something like that. .IP "Format" 4 .IX Item "Format" \&\*(L"Format\*(R" for that cell. .IP "Merged" 4 .IX Item "Merged" That cells is merged (or not). .IP "Rich" 4 .IX Item "Rich" Array ref of font informations about each characters. .Sp Each entry has : [ \fIStart Position\fR, \fIFont Object\fR] .Sp For more information please refer sample/dmpExR.pl .Sh "Format" .IX Subsection "Format" \&\fISpreadsheet::ParseExcel::Format\fR .PP Format class has these properties: .IP "Font" 4 .IX Item "Font" \&\*(L"Font\*(R" object for that Format. .IP "AlignH" 4 .IX Item "AlignH" Horizontal Alignment. .Sp .Vb 2 \& 0: (standard), 1: left, 2: center, 3: right, \& 4: fill , 5: justify, 7:equal_space .Ve .Sp \&\fBNotice:\fR 6 may be \fImerge\fR but it seems not to work. .IP "AlignV" 4 .IX Item "AlignV" Vertical Alignment. .Sp .Vb 1 \& 0: top, 1: vcenter, 2: bottom, 3: vjustify, 4: vequal_space .Ve .IP "Indent" 4 .IX Item "Indent" Number of indent .IP "Wrap" 4 .IX Item "Wrap" Wrap (or not). .IP "Shrink" 4 .IX Item "Shrink" Display in shrinking (or not) .IP "Rotate" 4 .IX Item "Rotate" In Excel97, 2000 : degrees of string rotation. In Excel95 or earlier : 0: No rotation, 1: Top down, 2: 90 degrees anti\-clockwise, 3: 90 clockwise .IP "JustLast" 4 .IX Item "JustLast" JustLast (or not). \&\fII have never seen this attribute.\fR .IP "ReadDir" 4 .IX Item "ReadDir" Direction for read. .IP "BdrStyle" 4 .IX Item "BdrStyle" Array ref of boder styles : [\fILeft\fR, \fIRight\fR, \fITop\fR, \fIBottom\fR] .IP "BdrColor" 4 .IX Item "BdrColor" Array ref of boder color indexes : [\fILeft\fR, \fIRight\fR, \fITop\fR, \fIBottom\fR] .IP "BdrDiag" 4 .IX Item "BdrDiag" Array ref of diag boder kind, style and color index : [\fIKind\fR, \fIStyle\fR, \fIColor\fR] Kind : 0: None, 1: Right\-Down, 2:Right\-Up, 3:Both .IP "Fill" 4 .IX Item "Fill" Array ref of fill pattern and color indexes : [\fIPattern\fR, \fIFront Color\fR, \fIBack Color\fR] .IP "Lock" 4 .IX Item "Lock" Locked (or not). .IP "Hidden" 4 .IX Item "Hidden" Hiddedn (or not). .IP "Style" 4 .IX Item "Style" Style format (or Cell format) .Sh "Font" .IX Subsection "Font" \&\fISpreadsheet::ParseExcel::Font\fR .PP Format class has these properties: .IP "Name" 4 .IX Item "Name" Name of that font. .IP "Bold" 4 .IX Item "Bold" Bold (or not). .IP "Italic" 4 .IX Item "Italic" Italic (or not). .IP "Height" 4 .IX Item "Height" Size (height) of that font. .IP "Underline" 4 .IX Item "Underline" Underline (or not). .IP "UnderlineStyle" 4 .IX Item "UnderlineStyle" 0: None, 1: Single, 2: Double, 0x21: Single(Account), 0x22: Double(Account) .IP "Color" 4 .IX Item "Color" Color index for that font. .IP "Strikeout" 4 .IX Item "Strikeout" Strikeout (or not). .IP "Super" 4 .IX Item "Super" 0: None, 1: Upper, 2: Lower .SH "Formatter class" .IX Header "Formatter class" \&\fISpreadsheet::ParseExcel::Fmt*\fR .PP Formatter class will convert cell data. .PP Spreadsheet::ParseExcel includes 2 formatter classes: FmtDefault and FmtJapanese. You can create your own FmtClass as you like. .PP Formatter class(Spreadsheet::ParseExcel::Fmt*) should provide these functions: .ie n .IP "ChkType($oSelf, $iNumeric\fR, \f(CW$iFmtIdx)" 4 .el .IP "ChkType($oSelf, \f(CW$iNumeric\fR, \f(CW$iFmtIdx\fR)" 4 .IX Item "ChkType($oSelf, $iNumeric, $iFmtIdx)" tells type of the cell that has specified value. .RS 4 .IP "$oSelf" 8 .IX Item "$oSelf" Formatter itself .IP "$iNumeric" 8 .IX Item "$iNumeric" If on, the value seems to be number .IP "$iFmtIdx" 8 .IX Item "$iFmtIdx" Format index number of that cell .RE .RS 4 .RE .ie n .IP "TextFmt($oSelf, $sText\fR, \f(CW$sCode)" 4 .el .IP "TextFmt($oSelf, \f(CW$sText\fR, \f(CW$sCode\fR)" 4 .IX Item "TextFmt($oSelf, $sText, $sCode)" converts original text into applicatable for Value. .RS 4 .IP "$oSelf" 8 .IX Item "$oSelf" Formatter itself .IP "$sText" 8 .IX Item "$sText" Original text .IP "$sCode" 8 .IX Item "$sCode" Character code of Original text .RE .RS 4 .RE .ie n .IP "ValFmt($oSelf, $oCell\fR, \f(CW$oBook)" 4 .el .IP "ValFmt($oSelf, \f(CW$oCell\fR, \f(CW$oBook\fR)" 4 .IX Item "ValFmt($oSelf, $oCell, $oBook)" converts original value into applicatable for Value. .RS 4 .IP "$oSelf" 8 .IX Item "$oSelf" Formatter itself .IP "$oCell" 8 .IX Item "$oCell" Cell object .IP "$oBook" 8 .IX Item "$oBook" Workbook object .RE .RS 4 .RE .ie n .IP "FmtString($oSelf, $oCell\fR, \f(CW$oBook)" 4 .el .IP "FmtString($oSelf, \f(CW$oCell\fR, \f(CW$oBook\fR)" 4 .IX Item "FmtString($oSelf, $oCell, $oBook)" get format string for the \fI$oCell\fR. .RS 4 .IP "$oSelf" 8 .IX Item "$oSelf" Formatter itself .IP "$oCell" 8 .IX Item "$oCell" Cell object .IP "$oBook" 8 .IX Item "$oBook" WorkBook object contains that cell .RE .RS 4 .RE .SH "KNOWN PROBLEM" .IX Header "KNOWN PROBLEM" This module can not get the values of fomulas in Excel files made with Spreadsheet::WriteExcel. Normaly (ie. By Excel application), formula has the result with it. But Spreadsheet::WriteExcel writes formula with no result. If you set your Excel application \*(L"Auto Calculation\*(R" off. (maybe [Tool]\-[Option]\-[Calculation] or something) You will see the same result. .SH "AUTHOR" .IX Header "AUTHOR" Current maintainer: Gabor Szabo szabgab@cpan.org .PP .Vb 1 \& http://www.szabgab.com/ .Ve .PP Original author: Kawai Takanori (Hippo2000) kwitknr@cpan.org .PP .Vb 2 \& http://member.nifty.ne.jp/hippo2000/ (Japanese) \& http://member.nifty.ne.jp/hippo2000/index_e.htm (English) .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" \&\s-1XLHTML\s0, OLE::Storage, Spreadsheet::WriteExcel, OLE::Storage_Lite .PP This module is based on herbert within OLE::Storage and \s-1XLHTML\s0. .PP XLSTools: http://perl.jonallen.info/projects/xlstools .SH "TODO" .IX Header "TODO" \&\- Add tests, and more tests .PP \&\- Spreadsheet::ParseExcel : Password protected data, Formulas support, HyperLink support, Named Range support .PP \&\- Spreadsheet::ParseExcel::SaveParser : Catch up Spreadsheet::WriteExce feature, Create new Excel fle .PP See also: .PP .Vb 1 \& L .Ve .PP .Vb 1 \& and .Ve .PP .Vb 4 \& http://www.perlmonks.org/index.pl?node_id=490656 \& http://www.perlmonks.org/index.pl?node_id=379743 \& http://www.perlmonks.org/index.pl?node_id=433192 \& http://www.perlmonks.org/index.pl?node_id=422147 .Ve .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright (c) 2006\-2007 Gabor Szabo Copyright (c) 2000\-2006 Kawai Takanori All rights reserved. .PP You may distribute under the terms of either the \s-1GNU\s0 General Public License or the Artistic License, as specified in the Perl \s-1README\s0 file. .SH "ACKNOWLEDGEMENTS" .IX Header "ACKNOWLEDGEMENTS" First of all, I would like to acknowledge valuable program and modules : \&\s-1XHTML\s0, OLE::Storage and Spreadsheet::WriteExcel. .PP In no particular order: Yamaji Haruna, Simamoto Takesi, Noguchi Harumi, Ikezawa Kazuhiro, Suwazono Shugo, Hirofumi Morisada, Michael Edwards, Kim Namusk, Slaven Rezić, Grant Stevens, and many many people + Kawai Mikako.