This function creates a new Echoview line at a fixed depth using COM scripting

EVNewFixedDepthLine(EVFile, depth, lineName)

Arguments

EVFile

An Echoview file COM object

depth

an integer specifying the fixed depth of the new line

lineName

a string containing the name for the new line

Value

returns the EV 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

#create a new line at 50m depth named "testline"
newLine <- EVNewFixedDepthLine(EVFile = EVFile, depth = 50, lineName = "testline")
# }