net.rgielen.com4j.office2010.office.XlHAlign Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum XlHAlign implements ComEnum {
/**
*
* The value of this constant is -4108
*
*/
xlHAlignCenter(-4108),
/**
*
* The value of this constant is 7
*
*/
xlHAlignCenterAcrossSelection(7),
/**
*
* The value of this constant is -4117
*
*/
xlHAlignDistributed(-4117),
/**
*
* The value of this constant is 5
*
*/
xlHAlignFill(5),
/**
*
* The value of this constant is 1
*
*/
xlHAlignGeneral(1),
/**
*
* The value of this constant is -4130
*
*/
xlHAlignJustify(-4130),
/**
*
* The value of this constant is -4131
*
*/
xlHAlignLeft(-4131),
/**
*
* The value of this constant is -4152
*
*/
xlHAlignRight(-4152),
;
private final int value;
XlHAlign(int value) { this.value=value; }
public int comEnumValue() { return value; }
}