
net.rgielen.com4j.office2010.word.WdUnderline Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdUnderline implements ComEnum {
/**
*
* The value of this constant is 0
*
*/
wdUnderlineNone(0),
/**
*
* The value of this constant is 1
*
*/
wdUnderlineSingle(1),
/**
*
* The value of this constant is 2
*
*/
wdUnderlineWords(2),
/**
*
* The value of this constant is 3
*
*/
wdUnderlineDouble(3),
/**
*
* The value of this constant is 4
*
*/
wdUnderlineDotted(4),
/**
*
* The value of this constant is 6
*
*/
wdUnderlineThick(6),
/**
*
* The value of this constant is 7
*
*/
wdUnderlineDash(7),
/**
*
* The value of this constant is 9
*
*/
wdUnderlineDotDash(9),
/**
*
* The value of this constant is 10
*
*/
wdUnderlineDotDotDash(10),
/**
*
* The value of this constant is 11
*
*/
wdUnderlineWavy(11),
/**
*
* The value of this constant is 27
*
*/
wdUnderlineWavyHeavy(27),
/**
*
* The value of this constant is 20
*
*/
wdUnderlineDottedHeavy(20),
/**
*
* The value of this constant is 23
*
*/
wdUnderlineDashHeavy(23),
/**
*
* The value of this constant is 25
*
*/
wdUnderlineDotDashHeavy(25),
/**
*
* The value of this constant is 26
*
*/
wdUnderlineDotDotDashHeavy(26),
/**
*
* The value of this constant is 39
*
*/
wdUnderlineDashLong(39),
/**
*
* The value of this constant is 55
*
*/
wdUnderlineDashLongHeavy(55),
/**
*
* The value of this constant is 43
*
*/
wdUnderlineWavyDouble(43),
;
private final int value;
WdUnderline(int value) { this.value=value; }
public int comEnumValue() { return value; }
}