快速业务通道

在SWT中使用OLE操作Excel(四):使单元格或列自动调整宽度 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16

在SWT中使用OLE操作Excel(四):使单元格或列自动调整宽度

时间:2011-07-06

在实际应用中,常常会遇到单元格的值比较长而被遮住,用户不得不手动调整宽度,如果能通过程序就自动调整宽度就会很方便了。实际上在通过OleView.exe这个工具查询得知Range有AutoFit的方法,它的Id是0x000000ed,那么如果获得了Range的引用,只要调用AutoFit这个方法,就可以自动调整宽度了。下面请看代码与示例效果:

package com.jrkui.example.excel; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.ole.win32.OLE; import org.eclipse.swt.ole.win32.OleAutomation; import org.eclipse.swt.ole.win32.OleClientSite; import org.eclipse.swt.ole.win32.OleFrame; import org.eclipse.swt.ole.win32.Variant; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; publicclass AutofitShell { publicstaticvoid main(String[] args) {    new AutofitShell().open(); }  publicvoid open() {    Display display = Display.getDefault();    Shell shell = new Shell();    shell.setText("Auto Fit");    shell.setSize(700, 300);    shell.setLayout(new FillLayout());    createExcelPart(shell);    shell.open();    while(!shell.isDisposed())      if(!display.readAndDispatch())        display.sleep();    display.dispose(); } privatestaticfinalintSHEET_ID = 0x000001e5; privatestaticfinalintCELL_ID =0x000000c5; privatestaticfinalintCELL_VALUE_ID = 0x00000006; privatevoid createExcelPart(Shell shell) {    OleFrame frame = new OleFrame(shell,SWT.NONE);    OleClientSite clientSite = new OleClientSite(frame,SWT.NONE,"Excel.Sheet");    clientSite.doVerb(OLE.OLEIVERB_SHOW);    OleAutomation workbook = new OleAutomation(clientSite);    OleAutomation worksheet = workbook.getProperty(SHEET_ID,new Variant[]{new Variant(1)}).getAutomation();    OleAutomation cellA3 = worksheet.getProperty(CELL_ID,new Variant[]{new Variant("A3")}).getAutomation();    cellA3.setProperty(CELL_VALUE_ID, new Variant("if you don''t fit the width of the cell, you couldn''t see all."));    autoFitWidth(cellA3); //   autoFitWidth(getColumnOfCell(cellA3)); } publicstaticfinalintAUTO_FIT_RANGE      = 0x000000ed; /** *自适应宽度 *@paramautomation */ privatevoid autoFitWidth(OleAutomation automation) {    //如果使用automation.getProperty(AUTO_FIT_RANGE)也是同样的效果    automation.invoke(AUTO_FIT_RANGE); } publicstaticfinalintCOLUMN_OF_CELL    = 0x000000f6; /** *获得单元格所在的列 *@paramcell *@return */ private OleAutomation getColumnOfCell(OleAutomation cell) {    return cell.getProperty(COLUMN_OF_CELL).getAutomation(); } }

在SWT中使用OLE操作Excel(四):使单元格或列自动调整宽度(2)

时间:2011-07-06

运行效果(自动调整A3单元格的宽度):

在SWT中使用OLE操作Excel(四):使单元格或列自动调整宽度 - 编程入门网

运行效果(去掉createExcelPart()方法中的autoFitWidth(getColumnOfCell(cellA3));的注释,自动调整A3单元格所在列的列宽)

在SWT中使用OLE操作Excel(四):使单元格或列自动调整宽度 - 编程入门网

说明:

调整列宽在本例中是通过autoFitWidth(OleAutomation automation)方法

在autoFitWidth(OleAutomation automation)中调用了OleAutomation的invoke()方法,参数是所代表ole对象的方法的id,意思是调用该方法,用 automation.getProperty(AUTO_FIT_RANGE)也是同样的效果

autoFitWidth(OleAutomation automation)的参数是一个Range对象,可以是一个单元格,也可以是一个单元格的区域,在本例中示范了两种效果(单元格、列)

获得一个单元格区域的的所在列的方法在Range中是Range* EntireColumn(),其id是0x000000f6

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号