net.rgielen.com4j.office2010.office.MsoGradientStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoGradientStyle implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoGradientMixed(-2),
/**
*
* The value of this constant is 1
*
*/
msoGradientHorizontal(1),
/**
*
* The value of this constant is 2
*
*/
msoGradientVertical(2),
/**
*
* The value of this constant is 3
*
*/
msoGradientDiagonalUp(3),
/**
*
* The value of this constant is 4
*
*/
msoGradientDiagonalDown(4),
/**
*
* The value of this constant is 5
*
*/
msoGradientFromCorner(5),
/**
*
* The value of this constant is 6
*
*/
msoGradientFromTitle(6),
/**
*
* The value of this constant is 7
*
*/
msoGradientFromCenter(7),
;
private final int value;
MsoGradientStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}