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

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

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

import com4j.*;

/**
 */
public enum MsoPermission implements ComEnum {
  /**
   * 

* The value of this constant is 1 *

*/ msoPermissionView(1), /** *

* The value of this constant is 1 *

*/ msoPermissionRead(1), /** *

* The value of this constant is 2 *

*/ msoPermissionEdit(2), /** *

* The value of this constant is 4 *

*/ msoPermissionSave(4), /** *

* The value of this constant is 8 *

*/ msoPermissionExtract(8), /** *

* The value of this constant is 15 *

*/ msoPermissionChange(15), /** *

* The value of this constant is 16 *

*/ msoPermissionPrint(16), /** *

* The value of this constant is 32 *

*/ msoPermissionObjModel(32), /** *

* The value of this constant is 64 *

*/ msoPermissionFullControl(64), /** *

* The value of this constant is 127 *

*/ msoPermissionAllCommon(127), ; private final int value; MsoPermission(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy