The ColComponent-n option specifies the column for the nth component (e.g. Component-1, Component-2, Component-3...). The option value is the 1-based index number for the column.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “data_src_filename”)
object.Option(“ColComponent-n”, “OptionValue”)
object.Do() or object.DoOnce()
Use the PtColCompCount option to set the number of component columns. Replace "n" in the syntax above with the desired component number.
The following example sets the column for Component-2 to column E.
'Specify Component-2 column
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","Mineral Concentration.dat")
CommandApi.Option("ColComponent-2","5")
CommandApi.Do()
Used by: DataSrc