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

net.rgielen.com4j.office2010.office.XlTickMark Maven / Gradle / Ivy

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

import com4j.*;

/**
 */
public enum XlTickMark implements ComEnum {
  /**
   * 

* The value of this constant is 4 *

*/ xlTickMarkCross(4), /** *

* The value of this constant is 2 *

*/ xlTickMarkInside(2), /** *

* The value of this constant is -4142 *

*/ xlTickMarkNone(-4142), /** *

* The value of this constant is 3 *

*/ xlTickMarkOutside(3), ; private final int value; XlTickMark(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy