This function exports a single region's definition as a .csv file using COM scripting
Arguments
- EVFile
An Echoview file COM object
- regionName
a string containing the region name to export definitions for
- filePath
a string containing the name and file path of the file to export to
Examples
if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVExportRegionDef(EVFile, regionName = "Region1", filePath = "~~/KAOS/EVExportRegionDef.csv")
}