set_name | R Documentation |
Set the name of a SA-item
set_name(jsap, idx, name)
jsap |
SAProcessing to be modified. |
idx |
index of the target SA-item. |
name |
character corresponding to the new name |
NULL
returned invisibly
sai_name()
# Load a Workspace
file <- system.file("workspaces", "workspace_test.xml", package = "rjd3workspace")
jws <- jws_open(file)
# Select SAProcessing
sap1 <- jws_sap(jws,1)
# Select SA-item
sai1 <- jsap_sai(sap1,3) # java object sai
# set name
set_name(sap1,3,"RF1011_1")
# check
sai1 <- jsap_sai(sap1,3) # reload sai
sai_name(sai1) #get name
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.