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

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

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

import com4j.*;

/**
 */
public enum MsoTextureAlignment implements ComEnum {
  /**
   * 

* The value of this constant is -2 *

*/ msoTextureAlignmentMixed(-2), /** *

* The value of this constant is 0 *

*/ msoTextureTopLeft(0), /** *

* The value of this constant is 1 *

*/ msoTextureTop(1), /** *

* The value of this constant is 2 *

*/ msoTextureTopRight(2), /** *

* The value of this constant is 3 *

*/ msoTextureLeft(3), /** *

* The value of this constant is 4 *

*/ msoTextureCenter(4), /** *

* The value of this constant is 5 *

*/ msoTextureRight(5), /** *

* The value of this constant is 6 *

*/ msoTextureBottomLeft(6), /** *

* The value of this constant is 7 *

*/ msoTextureBottom(7), /** *

* The value of this constant is 8 *

*/ msoTextureBottomRight(8), ; private final int value; MsoTextureAlignment(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy