deGetPushed
deGetPushed( [w_window[x_level] ] ) => t / nil
Description
Returns the pushed state for the item on the window stack corresponding to x_level. The pushed state is t if that x_level is any level other than the current edit level and nil otherwise. nil is returned if the stack is empty or x_level is -1. If x_level is defaulted or is nil then the current item on the stack is used.
Arguments
|
Window in which the pushed state is desired. Defaults to the current window. |
|
Value Returned
|
The given level was the current edit level, the stack is empty, or x_level is |
Examples
Assuming three levels of hierarchy in window(3), returns t.
deGetPushed( window(3) 1)
Return to top