Skip to content
Snippets Groups Projects
stateProcess.js 271 B
Newer Older
import("system.neon");
import("system.result");
import("Document_lib");

var openFileState;
if(DocumentUtil.canOpenSelectedDocument())
    openFileState = neon.COMPONENTSTATE_EDITABLE;
    openFileState = neon.COMPONENTSTATE_INVISIBLE;

result.string(openFileState);