delete_window

Declaration

delete_window (name: WINDOW)

Description

Deletes a window previously created with make_window. This removes all of the frame available from that window as well.

See Also

is_window
make_window
window and frame functions
Window_Manager

Example

script make_explain_window is
  if is_window ('explanation') then
    delete_window ('explanation')
  end
end