PtColY Option

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

object.Do() or object.DoOnce()

 

Example

The following example sets the Y column to column B.

 

 'Set the Y column

  CommandApi.Construct("ModifyModule")

  CommandApi.Option("Module","Mineral Concentration.dat")

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

  CommandApi.Do()

 

 

Used by: DataSrc