OutputType Option

The OutputType option specifies whether the data source contains point or well data. The option value is 0 or 1. A value of 0 sets the output type to points. A value of 1 sets the output type to wells.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

The following example sets the output type to points.

 

 'Set the Output Type to points

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option("OutputType","0")

  CommandApi.Do()

 

 

Used by: DataSrc