The ExtractPointsDefaultValue option sets the "Default Value" option for a ExtractPoints module. The OptionValue is any number that should be used as the substitution value. To turn on the "Use Default Value" option, use the ExtractPointsUseDefaultValue option.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “ExtractPoints”)
object.Option(“ExtractPointsDefaultValue”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the substitution of blank values for an ExtractPoints module and sets the default value.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ExtractPoints")
CommandApi.Option ("ExtractPointsUseDefaultValue", "True")
CommandApi.Do()
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ExtractPoints")
CommandApi.Option ("ExtractPointsDefaultValue", "10")
CommandApi.Do()
Used by: ExtractPoints
See Also