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

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

References

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

See also

Examples

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