RowFirst Option

The RowFirst option sets the first row to be used for the data source module. The option value is the row number.

 

Syntax

object.Construct(“ModifyModule”)

object.Option(“Module”, “data_src_filename”)

object.Option(“RowFirst”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

The following example sets the first row to row 4.

 

 'Set the first row

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("RowFirst","4")

  CommandApi.Do()

 

 

Used by: DataSrc