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

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

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

import com4j.*;

/**
 */
public enum XlDirection implements ComEnum {
  /**
   * 

* The value of this constant is -4121 *

*/ xlDown(-4121), /** *

* The value of this constant is -4159 *

*/ xlToLeft(-4159), /** *

* The value of this constant is -4161 *

*/ xlToRight(-4161), /** *

* The value of this constant is -4162 *

*/ xlUp(-4162), ; private final int value; XlDirection(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy