net.rgielen.com4j.office2010.excel.XlChartPicturePlacement Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlChartPicturePlacement implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlSides(1),
/**
*
* The value of this constant is 2
*
*/
xlEnd(2),
/**
*
* The value of this constant is 3
*
*/
xlEndSides(3),
/**
*
* The value of this constant is 4
*
*/
xlFront(4),
/**
*
* The value of this constant is 5
*
*/
xlFrontSides(5),
/**
*
* The value of this constant is 6
*
*/
xlFrontEnd(6),
/**
*
* The value of this constant is 7
*
*/
xlAllFaces(7),
;
private final int value;
XlChartPicturePlacement(int value) { this.value=value; }
public int comEnumValue() { return value; }
}