PtColZ Option

The PtColZ option sets the Z column for the data source module. The option value is the 1-based index number for the column.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

The following example sets the Z column to column C.

 

 'Set the Z column

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("PtColZ","3")

  CommandApi.Do()

 

 

Used by: DataSrc