RowUseAll Option

The RowUseAll option determines if all rows containing data are to be used from the data source module. The option value is a boolean. "True" uses all rows, excluding the header row. "False" uses the rows specified by the RowFirst and RowLast options.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

The following example sets the data source to use all rows.

 

 'Set the use all rows option

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("RowUseAll","True")

  CommandApi.Do()

 

 

Used by: DataSrc