Skip to contents

This function finds an EV Line in an EV file object by name using COM scripting.

Usage

EVFindLineByName(EVFile, lineName)

Arguments

EVFile

An Echoview file COM object

lineName

a string containing the name of the line to find

Value

an Echoview line object

See also

Examples

if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVLine <- EVFindLineByName(EVFile = EVFile, lineName = "Fixed depth 250 m")
}