WellRenderLabelJustification Option

 

The WellRenderLabelJustification option changes the justification of labels for a WellRender module. The OptionValue is set to 0, 1, or 2. 0 is left justified. 1 is right justified. 2 is center justified.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“Type”, “WellRender”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example shows how to change the label Justification for scatter plots.

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "WellRender")

  CommandApi.Option ("WellRenderLabelJustification", "1")

  CommandApi.Do()

 

Used by: WellRender module

 

 

See Also

Automation Model