WellColPathY Option

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

object.Do() or object.DoOnce()

 

Example

The following example sets the Y path column to column G.

 

 'Set the X path column

  CommandApi.Construct("ModifyModule")

  CommandApi.Option("Module","Anti collision data.xlsx - Sheet1")

  CommandApi.Option("WellColPathY","7")

  CommandApi.Do()

 

 

Used by: DataSrc