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

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

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

import com4j.*;

/**
 */
public enum MsoLineStyle implements ComEnum {
  /**
   * 

* The value of this constant is -2 *

*/ msoLineStyleMixed(-2), /** *

* The value of this constant is 1 *

*/ msoLineSingle(1), /** *

* The value of this constant is 2 *

*/ msoLineThinThin(2), /** *

* The value of this constant is 3 *

*/ msoLineThinThick(3), /** *

* The value of this constant is 4 *

*/ msoLineThickThin(4), /** *

* The value of this constant is 5 *

*/ msoLineThickBetweenThin(5), ; private final int value; MsoLineStyle(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy