WellColFrom Option

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

object.Do() or object.DoOnce()

 

Example

The following example sets the From column to column B.

 

 'Set the From column

  CommandApi.Construct("ModifyModule")

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

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

  CommandApi.Do()

 

 

Used by: DataSrc