The PtColX option sets the X 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(“PtColX”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the X column to column A.
'Set the X column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","Mineral Concentration.dat")
CommandApi.Option("PtColX","1")
CommandApi.Do()
Used by: DataSrc