WellSheetType Option

The WellSheetType option sets the sheet type for the data source module. The option value is 0, 1, 2, 3, 4 or 5. A value of 0 sets the sheet type to All. A value of 1 sets the sheet type to Collars. A value of 2 sets the sheet type to Directional Survey. A value of 3 sets the sheet type to From / To Logs. A value of 4 sets the sheet type to Logs / Curves. A value of 5 sets the sheet type to XYZ Path.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

The following example sets the sheet type to directional survey

 

 'Set the sheet type

  CommandApi.Construct("ModifyModule")

  CommandApi.Option("Module","SampleWellData.xlsx - Trajectories")

  CommandApi.Option("WellSheetType","2")

  CommandApi.Do()

 

 

Used by: DataSrc