• 大小: 16.21MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-22
  • 语言: C/C++
  • 标签: libXL  

资源简介

libXL 3.8.0 For Windows最新版,包含正式授权License及使用方法,所有c++例程已测试可用。

资源截图

代码片段和文件信息

#include 
#include 
#include “libxl.h“

int main()
{
    BookHandle book = xlCreateBook();
    if(book) 
    {
        int i f[6];
        FormatHandle format[6];
        SheetHandle sheet;

        f[0] = xlBookAddCustomNumFormat(book “0.0“);
        f[1] = xlBookAddCustomNumFormat(book “0.00“);
        f[2] = xlBookAddCustomNumFormat(book “0.000“);
        f[3] = xlBookAddCustomNumFormat(book “0.0000“);
        f[4] = xlBookAddCustomNumFormat(book “####.00 $“);
        f[5] = xlBookAddCustomNumFormat(book “####.00 $[Black][<1000];####.00 $[Red][>=1000]“);

        for(i = 0; i < 6; ++i) {
            format[i] = xlBookAddFormat(book 0);
            xlFormatSetNumFormat(format[i] f[i]);
        }

        sheet = xlBookAddSheet(book “Custom formats“ 0);
        if(sheet) 
        {
            xlSheetSetCol(sheet 0 0 20 0 0);
            xlSheetWriteNum(sheet 2 0 25.718 format[0]);
            xlSheetWriteNum(sheet 3 0 25.718 format[1]);
            xlSheetWriteNum(sheet 4 0 25.718 format[2]);
            xlSheetWriteNum(sheet 5 0 25.718 format[3]);

            xlSheetWriteNum(sheet 7 0 1800.5 format[4]);

            xlSheetWriteNum(sheet 9 0 500 format[5]);
            xlSheetWriteNum(sheet 10 0 1600 format[5]);            
        }

        if(xlBookSave(book “custom.xls“)) printf(“\nFile custom.xls has been created.\n“);
        xlBookRelease(book);
    }

    printf(“\nPress any key to exit...“);
    _getch();

    return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-21 19:12  libxl-3.8.0.0\
     目录           0  2017-04-21 19:12  libxl-3.8.0.0\bin\
     目录           0  2017-04-21 19:12  libxl-3.8.0.0\bin64\
     文件     9312256  2017-04-21 19:11  libxl-3.8.0.0\bin64\libxl.dll
     文件     6517248  2017-04-21 19:03  libxl-3.8.0.0\bin\libxl.dll
     文件       36953  2017-04-21 05:17  libxl-3.8.0.0\changelog.txt
     目录           0  2017-04-21 19:12  libxl-3.8.0.0\doc\
     文件        4645  2017-04-21 18:42  libxl-3.8.0.0\doc\autoFilter.html
     文件        6653  2017-04-21 18:42  libxl-3.8.0.0\doc\colors.html
     文件       10129  2017-04-21 18:42  libxl-3.8.0.0\doc\custom-format.html
     文件        7023  2017-04-21 18:42  libxl-3.8.0.0\doc\filterColumn.html
     文件        7270  2017-04-21 18:42  libxl-3.8.0.0\doc\font.html
     文件       32216  2017-04-21 18:41  libxl-3.8.0.0\doc\format.html
     目录           0  2017-04-21 19:12  libxl-3.8.0.0\doc\images\
     文件        1099  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_center.png
     文件        1739  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_distributed.png
     文件         980  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_fill.png
     文件        1093  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_general.png
     文件        1567  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_justify.png
     文件         959  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_left.png
     文件        1586  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_merge.png
     文件        1021  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignh_right.png
     文件        1131  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignv_bottom.png
     文件        1116  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignv_center.png
     文件        1790  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignv_distributed.png
     文件        1583  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignv_justify.png
     文件        1112  2016-05-25 23:47  libxl-3.8.0.0\doc\images\alignv_top.png
     文件         923  2016-05-25 23:47  libxl-3.8.0.0\doc\images\borderdiagonal_both.png
     文件         837  2016-05-25 23:47  libxl-3.8.0.0\doc\images\borderdiagonal_down.png
     文件         801  2016-05-25 23:47  libxl-3.8.0.0\doc\images\borderdiagonal_none.png
     文件         816  2016-05-25 23:47  libxl-3.8.0.0\doc\images\borderdiagonal_up.png
............此处省略669个文件信息

评论

共有 条评论