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

net.rgielen.com4j.office2010.word.WdFramePosition Maven / Gradle / Ivy

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

import com4j.*;

/**
 */
public enum WdFramePosition implements ComEnum {
  /**
   * 

* The value of this constant is -999999 *

*/ wdFrameTop(-999999), /** *

* The value of this constant is -999998 *

*/ wdFrameLeft(-999998), /** *

* The value of this constant is -999997 *

*/ wdFrameBottom(-999997), /** *

* The value of this constant is -999996 *

*/ wdFrameRight(-999996), /** *

* The value of this constant is -999995 *

*/ wdFrameCenter(-999995), /** *

* The value of this constant is -999994 *

*/ wdFrameInside(-999994), /** *

* The value of this constant is -999993 *

*/ wdFrameOutside(-999993), ; private final int value; WdFramePosition(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy