net.rgielen.com4j.office2010.office.MsoPresetLightingDirection Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoPresetLightingDirection implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoPresetLightingDirectionMixed(-2),
/**
*
* The value of this constant is 1
*
*/
msoLightingTopLeft(1),
/**
*
* The value of this constant is 2
*
*/
msoLightingTop(2),
/**
*
* The value of this constant is 3
*
*/
msoLightingTopRight(3),
/**
*
* The value of this constant is 4
*
*/
msoLightingLeft(4),
/**
*
* The value of this constant is 5
*
*/
msoLightingNone(5),
/**
*
* The value of this constant is 6
*
*/
msoLightingRight(6),
/**
*
* The value of this constant is 7
*
*/
msoLightingBottomLeft(7),
/**
*
* The value of this constant is 8
*
*/
msoLightingBottom(8),
/**
*
* The value of this constant is 9
*
*/
msoLightingBottomRight(9),
;
private final int value;
MsoPresetLightingDirection(int value) { this.value=value; }
public int comEnumValue() { return value; }
}