WellRenderPathSizeMethod Option

 

The WellRenderPathSizeMethod option changes the Size Method to either Fixed or By Log. The OptionValue is 0 or 1. 0 specifies fixed size, 1 specifies to use a log value.

 

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(“WellRenderPathSizeMethod”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example 1

This example changes the size method to fixed.

 

  CommandApi.Construct ("ModifyModule")

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

   CommandApi.Option ("WellRenderPathSizeMethod", "0")

  CommandApi.Do()

 

Example 2

This example changes the size method to By log.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: WellRender module

 

 

See Also

Automation Model