leSetWidthSpacingSnapPatternVisible
leSetWidthSpacingSnapPatternVisible (
t_gridName
g_isVisible
)
=> t / nil
Description
Turns on or off the visibility of the specified width spacing snap pattern grid.
Arguments
|
Boolean specifying whether the width spacing snap pattern grid is visible. |
Value Returned
|
The width spacing snap pattern grid visibility setting could be set successfully. |
|
|
The width spacing snap pattern grid visibility setting could not be set successfully. |
Example
Turns on the visibility of W1 width spacing snap pattern grid:
leSetWidthSpacingSnapPatternVisible("W1" t)
=> t
Turns off the visibility of W1 width spacing snap pattern grid:
leSetWidthSpacingSnapPatternVisible("W1" nil)
=> t
The visibility setting could not be applied:
leSetWidthSpacingSnapPatternVisible("W3" nil)
=> nil
Return to top