The WellDataZTop option sets the Z value for the top of the selected well in an existing WellData module. The OptionValue is the name of the well and the value. This option is only available when a WellData module already exists.
Syntax
object.Construct(“Import”)
object.Option(“Path”, “data file name”)
object.Option(“ImportAsWells”, “True”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “WellData”)
object.Option(“WellDataZTop”, “OptionValue”, "WellName")
object.Do() or object.DoOnce()
Example
This example sets the Z value for the top of well "MW-1" to 1000.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellData")
CommandApi.Option ("WellDataZTop", "1000", "MW-1")
CommandApi.Do()
Used by: WellData Module
See Also