This function finds an EV Line in an EV file object by name using COM scripting.
Arguments
- EVFile
An Echoview file COM object
- lineName
a string containing the name of the line to find
Examples
if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVLine <- EVFindLineByName(EVFile = EVFile, lineName = "Fixed depth 250 m")
}