This function finds the class of an Echoview region object using COM scripting.

EVFindRegionClass(evRegion)

Arguments

evRegion

and Echoview Region object

Value

a string containing the class of the region

References

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

See also

Examples

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

ev.region <- EVFindRegionByName(EVFile, "Region1")
EVFindRegionClass(ev.region)
# }