pteSetNoneStipple
pteSetNoneStipple(
[ ?mode { Display | Selection } ]
[ ?only { t | nil } ]
[ ?panel { Layers } ]
[ ?window w_windowId ]
)
=> t / nil
Description
Hides the stipple for the specified layer-purpose pairs.
Arguments
|
?mode
|
Scope of execution of the command.
Valid values:
-
Display: The stipple for all the layer-purpose pairs displayed in the Layers Palette panel are hidden. -
Selection: The stipple for the layer-purpose pairs selected in the Layers panel are hidden.
|
|
?only
|
If set to t, the stipple for only the layer-purpose pairs corresponding to the specified mode are hidden.
|
|
?panel
|
Name of the Palette panel. Valid values: Layers
Default: Layers
|
|
?window w_windowId
|
|
|
ID of the window containing the Palette that you want to update. Valid values: ID of any open window Default: Current window
|
Value Returned
|
t
|
The stipple for the specified layer-purpose pairs were hidden.
|
|
nil
|
The command was unsuccessful.
|
Examples
pteSetNoneStipple(?panel "Layers")
pteSetNoneStipple(?only t)
pteSetNoneStipple(?mode "Display")
pteSetNoneStipple(?window window(2))
pteSetNoneStipple(?mode "Display" ?only t ?panel "Layers" ?window window(2))
Return to top