The WellRenderLeaderLineWidth option changes the width of displayed lines connecting the points to the labels in the WellRender. The OptionValue is a number between 0 and 4.0. The larger the number, the thicker the line.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “WellRender”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “WellRender”)
object.Option(“WellRenderLeaderLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the line width to 1.2.
'This changes the leader line width of the wellrender labels
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellRender")
CommandApi.Option ("WellRenderLeaderLineWidth", "3.2")
CommandApi.Do()
Used by: WellRender module
See Also