net.rgielen.com4j.office2010.word.WdOutlineLevel Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdOutlineLevel implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
wdOutlineLevel1(1),
/**
*
* The value of this constant is 2
*
*/
wdOutlineLevel2(2),
/**
*
* The value of this constant is 3
*
*/
wdOutlineLevel3(3),
/**
*
* The value of this constant is 4
*
*/
wdOutlineLevel4(4),
/**
*
* The value of this constant is 5
*
*/
wdOutlineLevel5(5),
/**
*
* The value of this constant is 6
*
*/
wdOutlineLevel6(6),
/**
*
* The value of this constant is 7
*
*/
wdOutlineLevel7(7),
/**
*
* The value of this constant is 8
*
*/
wdOutlineLevel8(8),
/**
*
* The value of this constant is 9
*
*/
wdOutlineLevel9(9),
/**
*
* The value of this constant is 10
*
*/
wdOutlineLevelBodyText(10),
;
private final int value;
WdOutlineLevel(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy