GetObjectDefinition {hivModelling} | R Documentation |
Returns object definition stored as text file.
GetObjectDefinition( objectName, path = system.file("ObjectDefinitions", package = "hivModelling"), section = NULL, includeFileName = FALSE )
objectName |
Name of the object. Required. |
path |
Path to the object definition file. Optional.
Default = |
section |
Name of section of the list to return. If not specified, then
the whole specification is returned, otherwise only the specified section.
Optional. Default = |
includeFileName |
Logical indicating to include file name in the
returned list as field 'FileName'. Optional. Default = |
List object.
## Not run: GetObjectDefinition(objectName = 'Model') GetObjectDefinition(objectName = 'Model', section = 'Name') GetObjectDefinition(objectName = 'Settings', section = 'Columns') ## End(Not run)