All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.rgielen.com4j.office2010.excel.XlVAlign Maven / Gradle / Ivy

The newest version!
package net.rgielen.com4j.office2010.excel  ;

import com4j.*;

/**
 */
public enum XlVAlign implements ComEnum {
  /**
   * 

* The value of this constant is -4107 *

*/ xlVAlignBottom(-4107), /** *

* The value of this constant is -4108 *

*/ xlVAlignCenter(-4108), /** *

* The value of this constant is -4117 *

*/ xlVAlignDistributed(-4117), /** *

* The value of this constant is -4130 *

*/ xlVAlignJustify(-4130), /** *

* The value of this constant is -4160 *

*/ xlVAlignTop(-4160), ; private final int value; XlVAlign(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy