
net.rgielen.com4j.office2010.office.MsoTextStrike Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoTextStrike implements ComEnum {
/**
*
* The value of this constant is -2
*
*/
msoStrikeMixed(-2),
/**
*
* The value of this constant is 0
*
*/
msoNoStrike(0),
/**
*
* The value of this constant is 1
*
*/
msoSingleStrike(1),
/**
*
* The value of this constant is 2
*
*/
msoDoubleStrike(2),
;
private final int value;
MsoTextStrike(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy