All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.joylau.office.excel.config.CustomColumnStyle Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2017 by JoyLau. All rights reserved
 ******************************************************************************/

package cn.joylau.office.excel.config;

/**
 * 自定义列样式
 */
public class CustomColumnStyle {
    /**
     * 列宽度
     */
    private int width = 5000;

    public CustomColumnStyle() {
    }

    public CustomColumnStyle(int width) {
        this.width = width;
    }

    public int getWidth() {
        return width;
    }

    public void setWidth(int width) {
        this.width = width;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy