A script-enabled browser is required for this page to function properly.

HIDE_VIEW Built-in

Description

Hides the indicated canvas.

Syntax

PROCEDURE HIDE_VIEW
(view_id ViewPort);

PROCEDURE HIDE_VIEW
(view_name VARCHAR2);

Built-in Type unrestricted procedure

Enter Query Mode yes

Description

Hides the indicated canvas.

Parameters

view_id 
 
Specifies the unique ID that Oracle Forms assigns the view at the time it creates it. Use the FIND_VIEW Built-in to return the ID to an appropriately typed variable. The data type of the ID is ViewPort.
 
view_name 
 
Specifies the name that you gave the view when creating it.

HIDE_VIEW Examples

/*

** 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;