This function exports an EV line definition file (.evl) for a line associated with an acoustic variable.

EVLineExportFromAcousticVarEVL(EVFile, acoVar, lineNameToExport,
  pathAndFileName)

Arguments

EVFile

An Echoview file COM object

acoVar

Acoustic variable name that the line to be exported is associated with.

lineNameToExport

a string containing the name of the line to export

pathAndFileName

Path and filename of evl file.

References

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

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj, '~\\example1.EV')$EVFile

EVLineExportFromAcousticVarEVL(EVFile=EVFile,
   acoVar='120 seabed and surface excluded',
   lineNameToExport='Fixed depth 250 m',
   pathAndFileName=  '~~KAOS/test2.evl')
# }