leDecrementStopLevelByOne
leDecrementStopLevelByOne(
w_windowId
[ t_useCellViewMaxDepth ]
)
=> t / nil
Description
Decrements the stop level value of the specified window by one when it is greater than zero.
Arguments
|
w_windowId
|
Database ID for the window.
|
|
t_useCellViewMaxDepth
|
|
|
When t_useCellViewMaxDepth is set to t, the stop level is decremented using the minimum value between maximum cellview depth (opened in memory) and window stop level. For example, if the window stop level is 31 and the maximum cellview depth is 8, this function sets the stop level to 7. Valid Values: t or nil. The default is nil.
|
Value Returned
|
t
|
The stop level was decremented by one.
|
|
nil
|
The stop level was not decremented by one.
|
Example
Decrements the stop level value of the current window by one.
leDecrementStopLevelByOne(hiGetCurrentWindow)
Return to top