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

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

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

import com4j.*;

/**
 */
public enum XlPieSliceIndex implements ComEnum {
  /**
   * 

* The value of this constant is 1 *

*/ xlOuterCounterClockwisePoint(1), /** *

* The value of this constant is 2 *

*/ xlOuterCenterPoint(2), /** *

* The value of this constant is 3 *

*/ xlOuterClockwisePoint(3), /** *

* The value of this constant is 4 *

*/ xlMidClockwiseRadiusPoint(4), /** *

* The value of this constant is 5 *

*/ xlCenterPoint(5), /** *

* The value of this constant is 6 *

*/ xlMidCounterClockwiseRadiusPoint(6), /** *

* The value of this constant is 7 *

*/ xlInnerClockwisePoint(7), /** *

* The value of this constant is 8 *

*/ xlInnerCenterPoint(8), /** *

* The value of this constant is 9 *

*/ xlInnerCounterClockwisePoint(9), ; private final int value; XlPieSliceIndex(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy