RowLast Option

The RowLast option sets the last 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(“RowLast”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

The following example sets the last row to row 289.

 

 'Set the last row

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("RowLast","289")

  CommandApi.Do()

 

 

Used by: DataSrc