This function renames an Echoview line object using COM scripting
Arguments
- EVFile
An Echoview file COM object
- evLine
an Echoview line object
- newName
a string containing the new name for the line
Examples
if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
testline <- EVNewFixedDepthLine(EVFile = EVFile, depth = 50, lineName = "testline")
EVRenameLine(EVFile = EVFile, evLine = testline, newName = "line40")
}