⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mergedregion.java

📁 一个java生成自动生成Excel
💻 JAVA
字号:
package net.sf.jxls.transformer;import org.apache.poi.hssf.util.Region;/** * Represents merged region * @author Leonid Vysochyn */public class MergedRegion {    private Region region;    private RowCollection rowCollection;    private int index;    public MergedRegion(Region region, RowCollection rowCollection) {        this.region = region;        this.rowCollection = rowCollection;    }    public MergedRegion(Region region, int index) {        this.region = region;        this.index = index;    }    public int getIndex() {        return index;    }    public Region getRegion() {        return region;    }    public void setRegion(Region region) {        this.region = region;    }    public RowCollection getRowCollection() {        return rowCollection;    }    public void setRowCollection(RowCollection rowCollection) {        this.rowCollection = rowCollection;    }}

⌨️ 快捷键说明

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