net.rgielen.com4j.office2010.office.MsoTextCharWrap Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoTextCharWrap implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoCharWrapMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoNoCharWrap(0),
/**
*
* The value of this constant is 1
*
*/
msoStandardCharWrap(1),
/**
*
* The value of this constant is 2
*
*/
msoStrictCharWrap(2),
/**
*
* The value of this constant is 3
*
*/
msoCustomCharWrap(3),
;
private final int value;
MsoTextCharWrap(int value) { this.value=value; }
public int comEnumValue() { return value; }
}