WellColMeasDepth Option

The WellColMeasDepth option sets the Measured 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(“WellColMeasDepth”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

The following example sets the Measured Depth column to column B.

 

 'Set the MD column

  CommandApi.Construct("ModifyModule")

  CommandApi.Option("Module","SampleWellData.xlsx - Trajectories")

  CommandApi.Option("WellColMeasDepth","2")

  CommandApi.Do()

 

 

Used by: DataSrc