This function opens an existing Echoview (.EV) file using COM scripting.

EVOpenFile(EVAppObj, fileName)

Arguments

EVAppObj

An EV application COM object arising from the call COMCreate('EchoviewCom.EvApplication')

fileName

An Echoview file path and name.

Value

a list object with two elements. $EVFile: EVFile COM object, and $msg: message for processing log.

References

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

Examples

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