This function exports definitions for all Echoview regions within a region class using COM scripting

EVExportRegionDefByClass(evRegionClass, filePath)

Arguments

evRegionClass

an Echoview region class object

filePath

a string containing the name and file path of the file to export to

Value

a list object with one element- fucntion message for log

References

http://support.echoview.com/WebHelp/Echoview.htm/

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile

regionClass <- EVRegionClassFinder(EVFile, "aggregations")$regionClass
EVExportRegionDefByClass(evRegionClass = regionClass, filePath = "~~/KAOS/EVExportRegionDefByClass_example.csv")
# }