deSetHistoryOpenMode
deSetHistoryOpenMode(
t_openMode
)
=> t / nil
Description
Controls whether designs are opened from history in a new tab or a new window. The setting applies equally to opening a design from the CIW as well as from a session window.
Arguments
|
t_openMode
|
Valid values: newTab, newWindow, default.
|
|
|
-
newTab: The design selected from history would open in a new tab of the last active session window.
|
|
|
-
newWindow: The design selected from history would open in a new session window.
|
|
|
-
default: The design selected from CIW history would open in a new session window and the design selected from session window history would open in new tab.
|
Values Returned
|
t
|
The design was successful opened.
|
|
nil
|
The opening of the design failed.
|
Examples
Opens the chosen design in a new tab of the last active session window and returns t.
deSetHistoryOpenMode("newTab")
Return to top