ExtractPointsUseDefaultValue Option

 

The ExtractPointsUseDefaultValue option turns on/off the "Use Default Value" option for a ExtractPoints module. The OptionValue is either True or False. True turns on substitution values for blank input values. False turns off the substitution values for blank input values. To set the substitution value, use the ExtractPointsDefaultValue option.

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example turns on the substitution of blank values for an ExtractPoints module.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ExtractPointsUseDefaultValue", "True")

  CommandApi.Do()

 

Used by: ExtractPoints

 

 

See Also

Automation Model