| getZoom,RCyjs-method {RCyjs} | R Documentation |
getZoom learn the zoom level of the current display
## S4 method for signature 'RCyjs' getZoom(obj)
obj |
an RCyjs instance |
no return value
if(interactive()){
rcy <- RCyjs(title="rcyjs demo", graph=simpleDemoGraph())
getZoom(rcy)
Sys.sleep(1)
setZoom(rcy, 5)
getZoom(rcy)
}