PtColCompCount Option

The PtColCompCount option sets the number of Components in the data source. The option value is an integer.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

The following example sets the number of component columns to four.

 

 'Set the number of component columns

  CommandApi.Construct("ModifyModule")

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

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

  CommandApi.Do()

 

 

Used by: DataSrc