
net.rgielen.com4j.office2010.office.MsoBackgroundStyleIndex Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoBackgroundStyleIndex implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoBackgroundStyleMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoBackgroundStyleNotAPreset(0),
/**
*
* The value of this constant is 1
*
*/
msoBackgroundStylePreset1(1),
/**
*
* The value of this constant is 2
*
*/
msoBackgroundStylePreset2(2),
/**
*
* The value of this constant is 3
*
*/
msoBackgroundStylePreset3(3),
/**
*
* The value of this constant is 4
*
*/
msoBackgroundStylePreset4(4),
/**
*
* The value of this constant is 5
*
*/
msoBackgroundStylePreset5(5),
/**
*
* The value of this constant is 6
*
*/
msoBackgroundStylePreset6(6),
/**
*
* The value of this constant is 7
*
*/
msoBackgroundStylePreset7(7),
/**
*
* The value of this constant is 8
*
*/
msoBackgroundStylePreset8(8),
/**
*
* The value of this constant is 9
*
*/
msoBackgroundStylePreset9(9),
/**
*
* The value of this constant is 10
*
*/
msoBackgroundStylePreset10(10),
/**
*
* The value of this constant is 11
*
*/
msoBackgroundStylePreset11(11),
/**
*
* The value of this constant is 12
*
*/
msoBackgroundStylePreset12(12),
;
private final int value;
MsoBackgroundStyleIndex(int value) { this.value=value; }
public int comEnumValue() { return value; }
}