WellColTopY Option

The WellColTopY option sets the Top Y 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(“WellColTopY”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

The following example sets the Top Y column to column C.

 

 'Set the Top Y column

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("WellColTopY","3")

  CommandApi.Do()

 

 

Used by: DataSrc