deGetEIP
deGetEIP( [w_window[x_level] ] ) => t / nil
Description
Returns the edit-in-place state for the item on the window stack corresponding to x_level. The edit-in-place state is t if that stack level was created by the deEditInPlace function and nil otherwise. f nil is returned if the stack is empty or x_level is -1. If x_level is not specified or is nil then the current item on the stack is used.
Arguments
|
Window in which the edit-in-place state is desired. Defaults to the current window. |
|
Value Returned
|
The given level was not edited-in-place, the stack is empty, or x_level is |
Examples
Assuming an edit-in-place operation on an instance in the top-level cellview of window(3), returns t.
deGetEIP( window(3) 1)
Return to top