Skip to contents

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

Usage

EVSaveFile(EVFile)

Arguments

EVFile

An Echoview file COM object

Value

a list object with two elements. $chk: Boolean check indicating if the file was successfully saved; $msg: message for processing log.

See also

Examples

if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVSaveFile(EVFile)
}