net.rgielen.com4j.office2010.office.XlBorderWeight Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum XlBorderWeight implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlHairline(1),
/**
*
* The value of this constant is -4138
*
*/
xlMedium(-4138),
/**
*
* The value of this constant is 4
*
*/
xlThick(4),
/**
*
* The value of this constant is 2
*
*/
xlThin(2),
;
private final int value;
XlBorderWeight(int value) { this.value=value; }
public int comEnumValue() { return value; }
}