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