????

Your IP : 18.220.22.253


Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/excel4node/source/
Upload File :
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/excel4node/source/index.js

/* REFERENCES
    http://www.ecma-international.org/news/TC45_current_work/OpenXML%20White%20Paper.pdf
    http://www.ecma-international.org/publications/standards/Ecma-376.htm
    http://www.openoffice.org/sc/excelfileformat.pdf 
    http://officeopenxml.com/anatomyofOOXML-xlsx.php
*/

/* 
    Code references specifications sections from ECMA-376 2nd edition doc
    ECMA-376, Second Edition, Part 1 - Fundamentals And Markup Language Reference.pdf
    found in ECMA-376 2nd edition Part 1 download at http://www.ecma-international.org/publications/standards/Ecma-376.htm
    Sections are referenced in code comments with ยง 
*/

const utils = require('./lib/utils.js');
const types = require('./lib/types/index.js');

module.exports = {
    Workbook: require('./lib/workbook/index.js'),
    getExcelRowCol: utils.getExcelRowCol,
    getExcelAlpha: utils.getExcelAlpha,
    getExcelTS: utils.getExcelTS,
    getExcelCellRef: utils.getExcelCellRef,
    PaperSize: types.paperSize,
    CellComment: types.cellComments,
    PrintError: types.printError,
    PageOrder: types.pageOrder,
    Orientation: types.orientation,
    Pane: types.pane,
    PaneState: types.paneState,
    HorizontalAlignment: types.alignment.horizontal,
    VerticalAlignment: types.alignment.vertical,
    BorderStyle: types.borderStyle,
    PresetColorVal: types.excelColor,
    PatternType: types.fillPattern,
    PositiveUniversalMeasure: types.positiveUniversalMeasure
};