![JAR search and dependency download from the Maven repository](/logo.png)
net.rgielen.com4j.office2010.word.WdSummaryLength Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdSummaryLength implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
wd10Sentences(-2),
/**
*
* The value of this constant is -3
*
*/
wd20Sentences(-3),
/**
*
* The value of this constant is -4
*
*/
wd100Words(-4),
/**
*
* The value of this constant is -5
*
*/
wd500Words(-5),
/**
*
* The value of this constant is -6
*
*/
wd10Percent(-6),
/**
*
* The value of this constant is -7
*
*/
wd25Percent(-7),
/**
*
* The value of this constant is -8
*
*/
wd50Percent(-8),
/**
*
* The value of this constant is -9
*
*/
wd75Percent(-9),
;
private final int value;
WdSummaryLength(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy