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

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

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

import com4j.*;

/**
 */
public enum XlPageBreak implements ComEnum {
  /**
   * 

* The value of this constant is -4105 *

*/ xlPageBreakAutomatic(-4105), /** *

* The value of this constant is -4135 *

*/ xlPageBreakManual(-4135), /** *

* The value of this constant is -4142 *

*/ xlPageBreakNone(-4142), ; private final int value; XlPageBreak(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy