net.rgielen.com4j.office2010.excel.XlPlacement Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlPlacement implements ComEnum {
/**
*
* The value of this constant is 3
*
*/
xlFreeFloating(3),
/**
*
* The value of this constant is 2
*
*/
xlMove(2),
/**
*
* The value of this constant is 1
*
*/
xlMoveAndSize(1),
;
private final int value;
XlPlacement(int value) { this.value=value; }
public int comEnumValue() { return value; }
}