This function finds an Echoview region by name using COM scripting

EVFindRegionByName(EVFile, regionName)

Arguments

EVFile

An Echoview file COM object

regionName

a string containing the name of the region to find

Value

the Echoview region object

References

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

See also

Examples

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

testRegion <- EVFindRegionByName(EVFile, "Region1")
# }