All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.rgielen.com4j.office2010.office.MsoOrientation Maven / Gradle / Ivy

The newest version!
package net.rgielen.com4j.office2010.office  ;

import com4j.*;

/**
 */
public enum MsoOrientation implements ComEnum {
  /**
   * 

* The value of this constant is -2 *

*/ msoOrientationMixed(-2), /** *

* The value of this constant is 1 *

*/ msoOrientationHorizontal(1), /** *

* The value of this constant is 2 *

*/ msoOrientationVertical(2), ; private final int value; MsoOrientation(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy