The WellColTopX option sets the Top X 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(“WellColTopX”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the Top X column to column B.
'Set the Top X column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","SampleWellData.xlsx - Collars")
CommandApi.Option("WellColTopX","2")
CommandApi.Do()
Used by: DataSrc