owner {rsyncrosim} | R Documentation |
Owner of a SsimLibrary, Project, Scenario, or Folder
Description
Retrieves or sets the owner of a SsimLibrary
,
Project
, Scenario
, or Folder
.
Usage
owner(ssimObject)
owner(ssimObject) <- value
## S4 method for signature 'character'
owner(ssimObject)
## S4 method for signature 'SsimLibrary'
owner(ssimObject)
## S4 method for signature 'Project'
owner(ssimObject)
## S4 method for signature 'Scenario'
owner(ssimObject)
## S4 method for signature 'Folder'
owner(ssimObject)
## S4 replacement method for signature 'character'
owner(ssimObject) <- value
## S4 replacement method for signature 'SsimObject'
owner(ssimObject) <- value
## S4 replacement method for signature 'Folder'
owner(ssimObject) <- value
Arguments
ssimObject |
|
value |
character string of the new owner |
Value
A character string: the owner of the SsimObject.
Examples
## Not run:
# Specify file path and name of new SsimLibrary
myLibraryName <- file.path(tempdir(), "testlib")
# Set up a SyncroSim Session, SsimLibrary, Project, and Scenario
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName, session = mySession)
myProject <- project(myLibrary, project = "Definitions")
myScenario <- scenario(myProject, scenario = "My Scenario")
# Retrieve the owner of an SsimObject
owner(myLibrary)
owner(myProject)
owner(myScenario)
# Set the owner of a SyncroSim Scenario
owner(myScenario) <- "Apex RMS"
## End(Not run)
[Package rsyncrosim version 1.5.0 Index]