Operation
Cet objet représente la définition d'une opération d'une application.
Propriétés
Id
sysId de l'opération.
Name
Nom de l'opération.
Exemple: création d'une option contenant la liste des actions
var arr = new Array();
var reg = System.Registry;
var app = reg.getApplication(appname);
if (app != null) {
var opers = app.getOperations();
var max = opers.length;
for (var i=0; i<max; i++) {
var oper = opers[i];
var opt = new sysOptionValue();
opt.sysTitle = oper.Name
opt.sysValue = oper.Name;
arr.push(opt);
}
}