description {rsyncrosim} | R Documentation |
Description of SsimLibrary, Project or Scenario
Description
Get or set the description of a SsimLibrary
, Project
,
Scenario
or Folder
.
Usage
description(ssimObject)
description(ssimObject) <- value
## S4 method for signature 'character'
description(ssimObject)
## S4 method for signature 'SsimObject'
description(ssimObject)
## S4 method for signature 'Folder'
description(ssimObject)
## S4 replacement method for signature 'character'
description(ssimObject) <- value
## S4 replacement method for signature 'SsimObject'
description(ssimObject) <- value
## S4 replacement method for signature 'Folder'
description(ssimObject) <- value
Arguments
ssimObject |
|
value |
character string specifying the new description |
Value
A character string: the description 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, and Project
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName, session = mySession)
myProject <- project(myLibrary, project = "Definitions")
# Retrieve the description of the SyncroSim Project
mydescription <- description(myProject)
# Set the description of the SyncroSim Project
description(myProject) <- "my description"
## End(Not run)
[Package rsyncrosim version 1.5.0 Index]