The RowHeader option sets the header row in the data source module. The option value is the row number.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “data_src_filename”)
object.Option(“RowHeader”, “OptionValue”)
object.Do() or object.DoOnce()
The following example sets the header row to row 1.
'Set the header row
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","Mineral Concentration.dat")
CommandApi.Option("RowHeader","1")
CommandApi.Do()
Used by: DataSrc