labkey.setModuleProperty {Rlabkey} | R Documentation |
Set module property value for a specific folder or as site wide (with folderPath '/')
labkey.setModuleProperty(baseUrl=NULL, folderPath, moduleName, propName, propValue)
baseUrl |
server location including context path, if any. e.g. https://www.labkey.org/ |
folderPath |
a string specifying the |
moduleName |
name of the module |
propName |
The module property name |
propValue |
The module property value to save |
## Not run:
library(Rlabkey)
labkey.setModuleProperty(baseUrl="http://labkey/", folderPath="flowProject",
moduleName="flow", propName="ExportToScriptFormat", propValue="zip")
## End(Not run)