xlcelltype.java

来自「将Excel和Word的类型库都转换过来了」· Java 代码 · 共 23 行

JAVA
23
字号
/** * JacobGen generated file --- do not edit * * (http://www.bigatti.it/projects/jacobgen) */package org.nethawker.excel11;import com.jacob.com.*;public interface XlCellType {	public static final int xlCellTypeBlanks = 4;	public static final int xlCellTypeConstants = 2;	public static final int xlCellTypeFormulas = -4123;	public static final int xlCellTypeLastCell = 11;	public static final int xlCellTypeComments = -4144;	public static final int xlCellTypeVisible = 12;	public static final int xlCellTypeAllFormatConditions = -4172;	public static final int xlCellTypeSameFormatConditions = -4173;	public static final int xlCellTypeAllValidation = -4174;	public static final int xlCellTypeSameValidation = -4175;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?