/* * $Id$ */ /* * Harbour Project source code: * * Copyright 2011 Fausto Di Creddo Trautwein, ftwein@yahoo.com.br * www - http://www.xharbour.org http://harbour-project.org * * Thanks TO Robert F Greer, PHP original version * http://sourceforge.net/projects/excelwriterxml/ * * This program is free software; you can redistribute it AND/OR modify * it under the terms of the GNU General PUBLIC License as published by * the Free Software Foundation; either version 2, OR( at your option ) * any later version. * * This program is distributed IN the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General PUBLIC License FOR more details. * * You should have received a copy of the GNU General PUBLIC License * along WITH this software; see the file COPYING. IF NOT, write TO * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA( OR visit the web site http://www.gnu.org/ ). * * As a special exception, the Harbour Project gives permission FOR * additional uses of the text contained IN its release of Harbour. * * The exception is that, IF you link the Harbour libraries WITH other * files TO produce an executable, this does NOT by itself cause the * resulting executable TO be covered by the GNU General PUBLIC License. * Your use of that executable is IN no way restricted on account of * linking the Harbour library code into it. * * This exception does NOT however invalidate any other reasons why * the executable file might be covered by the GNU General PUBLIC License. * * This exception applies only TO the code released by the Harbour * Project under the name Harbour. IF you copy code FROM other * Harbour Project OR Free Software Foundation releases into a copy of * Harbour, as the General PUBLIC License permits, the exception does * NOT apply TO the code that you add IN this way. TO avoid misleading * anyone as TO the status of such modified files, you must delete * this exception notice FROM them. * * IF you write modifications of your own FOR Harbour, it is your choice * whether TO permit this exception TO apply TO your modifications. * IF you DO NOT wish that, delete this exception notice. * */ /*----------------------------------------------------------------------*/ FUNCTION main() LOCAL xml, format1, format2, format3, format4 LOCAL sheet1, sheet2, sheet4 xml = ExcelWriterXML():new('my file.xml') /** * Add some general properties to the document */ xml:docTitle('My Demo Doc') xml:docAuthor('Robert F Greer') xml:docCompany('Greers.Org') xml:docManager('Wife') /** * Choose to show any formatting/input errors on a seperate sheet */ //xml:showErrorSheet(.t.) /** * Show the style options */ format1 = xml:addStyle('left_rotate60_big') format1:alignRotate(60) format1:alignHorizontal('Left') format1:setFontSize('18') format2 = xml:addStyle('verticaltext_left') format2:alignVerticaltext(45) format2:alignHorizontal('Left') format3 = xml:addStyle('wraptext_top') format3:alignWraptext() format3:alignVertical('Top') /** * Create a new sheet with the XML document */ sheet1 = xml:addSheet('Alignment') /** * Add three new cells of type String with difference alignment values. * Notice that the style of the each cell can be explicity named or the style * reference can be passed. */ sheet1:writeString(1,1,'left_rotate45',format1) sheet1:writeString(1,2,'vertical left','verticaltext_left') sheet1:writeString(1,3,'this text has been wrapped and is aligned at the top','wraptext_top') //sheet1:writeString(1,4,'No style applied') sheet2 = xml:addSheet('Formulas') /** * Wrote three numbers. * Rows 4 and 5 show the formulas in R1C1 notation using the writeFormula() * function. * Also see how comments are added. */ sheet2:columnWidth(1,100) sheet2:writeString(1,1,'Number') sheet2:writeNumber(1,2,50) sheet2:writeString(2,1,'Number') sheet2:writeNumber(2,2,30) sheet2:writeString(3,1,'Number') sheet2:writeNumber(3,2,20) sheet2:writeString(4,1,'=SUM(R[-3]C:R[-1]C)') sheet2:writeFormula('Number',4,2,'=SUM(R[-3]C:R[-1]C)') //sheet2:addComment(4,2,'Here is my formula: =SUM(R[-3]C:R[-1]C)','My NAME') sheet2:writeString(5,1,'=SUM(R1C2:R3C2)') sheet2:writeFormula('Number',5,2,'=SUM(R1C1:R3C2)') //sheet2:addComment(5,2,'Here is my formula: =SUM(R1C1:R3C2)') sheet4 = xml:addSheet('more formatting') format4 = xml:addStyle('my style') format4:setFontBold() format4:setFontItalic() format4:setFontUnderline('DoubleAccounting') format4:bgColor('Black') format4:setFontColor('White') format4:setNumberFormatDateTime() //mydate = sheet4:convertMysqlDateTime('2008-02-14 19:30:00') sheet4:writeDateTime(1,1,DTOC(DATE()),format4) // Change the row1 height to 30 pixels sheet4:rowHeight(1,'30') sheet4:writeString(2,1,'formatted text + cell color + merged + underlined',format4) // Merge (2,1) with 4 columns to the right and 2 rows down sheet4:cellMerge(2,1,4,2) /** * Send the headers, then output the data */ //xml:sendHeaders() xml:writeData('example2.xml') RETURN NIL /*----------------------------------------------------------------------*/