![JAR search and dependency download from the Maven repository](/logo.png)
net.rgielen.com4j.office2010.word.WdGoToDirection Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdGoToDirection implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
wdGoToFirst(1),
/**
*
* The value of this constant is -1
*
*/
wdGoToLast(-1),
/**
*
* The value of this constant is 2
*
*/
wdGoToNext(2),
/**
*
* The value of this constant is 2
*
*/
wdGoToRelative(2),
/**
*
* The value of this constant is 3
*
*/
wdGoToPrevious(3),
/**
*
* The value of this constant is 1
*
*/
wdGoToAbsolute(1),
;
private final int value;
WdGoToDirection(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy