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

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

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

import com4j.*;

/**
 */
public enum XlUnderlineStyle implements ComEnum {
  /**
   * 

* The value of this constant is -4119 *

*/ xlUnderlineStyleDouble(-4119), /** *

* The value of this constant is 5 *

*/ xlUnderlineStyleDoubleAccounting(5), /** *

* The value of this constant is -4142 *

*/ xlUnderlineStyleNone(-4142), /** *

* The value of this constant is 2 *

*/ xlUnderlineStyleSingle(2), /** *

* The value of this constant is 4 *

*/ xlUnderlineStyleSingleAccounting(4), ; private final int value; XlUnderlineStyle(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy