ColLabel-n Option

 

The ColLabel-n option specifies the column for the nth label (e.g. Label-1, Label-2, Label-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(“ColLabel-n”, “OptionValue”)

object.Do() or object.DoOnce()

 

Remarks

Use the PtColLabelCount option to set the number of label columns. Replace "n" in the syntax above with the desired label number.

 

Example

The following example sets the column for Label-2 to column E.

 

'Specify Label-2 column

CommandApi.Construct("ModifyModule")

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

CommandApi.Option("ColLabel-2","5")

CommandApi.Do()

 

 

Used by: DataSrc