net.rgielen.com4j.office2010.office.MsoTextTabAlign Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoTextTabAlign implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoTabAlignMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoTabAlignLeft(0),
/**
*
* The value of this constant is 1
*
*/
msoTabAlignCenter(1),
/**
*
* The value of this constant is 2
*
*/
msoTabAlignRight(2),
/**
*
* The value of this constant is 3
*
*/
msoTabAlignDecimal(3),
;
private final int value;
MsoTextTabAlign(int value) { this.value=value; }
public int comEnumValue() { return value; }
}