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

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

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

import com4j.*;

/**
 */
public enum XlMarkerStyle implements ComEnum {
  /**
   * 

* The value of this constant is -4105 *

*/ xlMarkerStyleAutomatic(-4105), /** *

* The value of this constant is 8 *

*/ xlMarkerStyleCircle(8), /** *

* The value of this constant is -4115 *

*/ xlMarkerStyleDash(-4115), /** *

* The value of this constant is 2 *

*/ xlMarkerStyleDiamond(2), /** *

* The value of this constant is -4118 *

*/ xlMarkerStyleDot(-4118), /** *

* The value of this constant is -4142 *

*/ xlMarkerStyleNone(-4142), /** *

* The value of this constant is -4147 *

*/ xlMarkerStylePicture(-4147), /** *

* The value of this constant is 9 *

*/ xlMarkerStylePlus(9), /** *

* The value of this constant is 1 *

*/ xlMarkerStyleSquare(1), /** *

* The value of this constant is 5 *

*/ xlMarkerStyleStar(5), /** *

* The value of this constant is 3 *

*/ xlMarkerStyleTriangle(3), /** *

* The value of this constant is -4168 *

*/ xlMarkerStyleX(-4168), ; private final int value; XlMarkerStyle(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy