The WellColTotalDepth option sets the total depth 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(“WellColTotalDepth”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the Total Depth column to column G.
'Set the total depth column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","SampleWellData.xlsx - Collars")
CommandApi.Option("WellColTotalDepth","7")
CommandApi.Do()
Used by: DataSrc