The WellRenderIntDataLabelFormatPostfix option sets the postfix for the label for the interval data for the WellData module. The OptionValue is the desired postfix label.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “WelRender”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “WellRender”)
object.Option(“WellRenderIntDataLabelFormatPostfix”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label postfix.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellRender")
CommandApi.Option ("WellRenderIntDataLabelFormatPostfix", "-post")
CommandApi.Do()
Used by: WellRender module
See Also