The WellColId option sets the Well Name (ID) column for the data source module. The option value is the 1-based index number for the column.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “data_src_filename”)
object.Option(“WellColId”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the Well Name column to column A.
'Set the ID column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","SampleWellData.xlsx - Samples")
CommandApi.Option("WellColId","1")
CommandApi.Do()
Used by: DataSrc