The WellColVertType option sets the vertical direction column for the data source module. The option value is 0 or 1. A value of 0 sets the vertical direction to "dip". A value of 1 sets the vertical direction to "inclination".
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “data_src_filename”)
object.Option(“WellColVertType”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the vertical direction to inclination.
'Set the vertical direction
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","SampleWellData.xlsx - Trajectories")
CommandApi.Option("WellColVertType","1")
CommandApi.Do()
Used by: DataSrc