net.rgielen.com4j.office2010.excel.XlToolbarProtection Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlToolbarProtection implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlNoButtonChanges(1),
/**
*
* The value of this constant is 4
*
*/
xlNoChanges(4),
/**
*
* The value of this constant is 3
*
*/
xlNoDockingChanges(3),
/**
*
* The value of this constant is -4143
*
*/
xlToolbarProtectionNone(-4143),
/**
*
* The value of this constant is 2
*
*/
xlNoShapeChanges(2),
;
private final int value;
XlToolbarProtection(int value) { this.value=value; }
public int comEnumValue() { return value; }
}