The WellColAz option sets the Azimuth 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(“WellColAz”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the Azimuth column to column C.
'Set the Azimuth column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","SampleWellData.xlsx - Trajectories")
CommandApi.Option("WellColAz","3")
CommandApi.Do()
Used by: DataSrc