This function finds an echoview region class by name.

EVRegionClassFinder(EVFile, regionClassName)

Arguments

EVFile

An Echoview file COM object

regionClassName

A string containing the name of an Echoview region

Value

a list object with two elements. $regionClass: The class of the region, and $msg: message for processing 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
aggregationsClass <- EVRegionClassFinder(EVFile, "aggregations")$regionClass
# }