Hides the indicated canvas.
PROCEDURE HIDE_VIEW
(view_id ViewPort);
PROCEDURE HIDE_VIEW
(view_name VARCHAR2);
Built-in Type unrestricted procedure
Enter Query Mode yes
Hides the indicated canvas.
/*
** Built-in: HIDE_VIEW
** Example: Programmatically dismiss a stacked view from the
** operator's sight.
*/
PROCEDURE Hide_Button_Bar IS
BEGIN
Hide_View('Button_Bar');
END;