net.rgielen.com4j.office2010.office.MsoLineDashStyle Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoLineDashStyle implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoLineDashStyleMixed(-2),
/**
*
* The value of this constant is 1
*
*/
msoLineSolid(1),
/**
*
* The value of this constant is 2
*
*/
msoLineSquareDot(2),
/**
*
* The value of this constant is 3
*
*/
msoLineRoundDot(3),
/**
*
* The value of this constant is 4
*
*/
msoLineDash(4),
/**
*
* The value of this constant is 5
*
*/
msoLineDashDot(5),
/**
*
* The value of this constant is 6
*
*/
msoLineDashDotDot(6),
/**
*
* The value of this constant is 7
*
*/
msoLineLongDash(7),
/**
*
* The value of this constant is 8
*
*/
msoLineLongDashDot(8),
/**
*
* The value of this constant is 9
*
*/
msoLineLongDashDotDot(9),
/**
*
* The value of this constant is 10
*
*/
msoLineSysDash(10),
/**
*
* The value of this constant is 11
*
*/
msoLineSysDot(11),
/**
*
* The value of this constant is 12
*
*/
msoLineSysDashDot(12),
;
private final int value;
MsoLineDashStyle(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy