net.rgielen.com4j.office2010.word.WdTextOrientation Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdTextOrientation implements ComEnum {
/**
*
* The value of this constant is 0
*
*/
wdTextOrientationHorizontal(0),
/**
*
* The value of this constant is 2
*
*/
wdTextOrientationUpward(2),
/**
*
* The value of this constant is 3
*
*/
wdTextOrientationDownward(3),
/**
*
* The value of this constant is 1
*
*/
wdTextOrientationVerticalFarEast(1),
/**
*
* The value of this constant is 4
*
*/
wdTextOrientationHorizontalRotatedFarEast(4),
/**
*
* The value of this constant is 5
*
*/
wdTextOrientationVertical(5),
;
private final int value;
WdTextOrientation(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy