Skip to contents

This function creates a new echoview fileset via COM scripting

Usage

EVCreateFileset(EVFile, filesetName)

Arguments

EVFile

An Echoview file COM object

filesetName

Echoview fileset name to create

Value

a list object with two elements. $fileset: created fileset COM object, and $msg: message for processing log.

Examples

if (FALSE) {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVCreateFileset(EVFile = EVFile, filesetName = 'example')
}