Skip to contents

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

Usage

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

Examples

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

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