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

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

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

import com4j.*;

/**
 */
public enum XlPivotTableMissingItems implements ComEnum {
  /**
   * 

* The value of this constant is -1 *

*/ xlMissingItemsDefault(-1), /** *

* The value of this constant is 0 *

*/ xlMissingItemsNone(0), /** *

* The value of this constant is 32500 *

*/ xlMissingItemsMax(32500), /** *

* The value of this constant is 1048576 *

*/ xlMissingItemsMax2(1048576), ; private final int value; XlPivotTableMissingItems(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy