net.rgielen.com4j.office2010.office.MsoParagraphAlignment Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoParagraphAlignment implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoAlignMixed(-2),
/**
*
* The value of this constant is 1
*
*/
msoAlignLeft(1),
/**
*
* The value of this constant is 2
*
*/
msoAlignCenter(2),
/**
*
* The value of this constant is 3
*
*/
msoAlignRight(3),
/**
*
* The value of this constant is 4
*
*/
msoAlignJustify(4),
/**
*
* The value of this constant is 5
*
*/
msoAlignDistribute(5),
/**
*
* The value of this constant is 6
*
*/
msoAlignThaiDistribute(6),
/**
*
* The value of this constant is 7
*
*/
msoAlignJustifyLow(7),
;
private final int value;
MsoParagraphAlignment(int value) { this.value=value; }
public int comEnumValue() { return value; }
}