The LatticeSliceBorderColor option changes the color of the border line around the edge of the Slice module. The OptionValue is a color name.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Slice”)
object.Option(“LatticeSliceBorderColor”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the color of the border line for the Slice module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Slice")
CommandApi.Option ("LatticeSliceBorderColor", "Sky Blue")
CommandApi.Do()
Used by: LatticeSlice
See Also