OraFormsWindowResize Function

Action

Resizes a given window by specified coordinates.

Include file

OraForms.bdh

Syntax

OraFormsWindowResize(  in sName :  string, 
                        in nX :  number, 
                        in nY :  number ) :  boolean;

Return value

  • true if successful
  • false otherwise
Parameter Description
sName The window's unique name.
nX x part of the coordinates.
nY y part of the coordinates.

Example

 dcltrans 
  transaction TMain 
  begin 
    OraFormsSetString( "DEFAULT_LOCAL_TZ", "Europe/Berlin"); 
    OraFormsConnect( "server module=javamail90.fmx usesdi=yes"); 
    OraFormsSetWindow( "BASE_DEMO_WINDOW"); 
    OraFormsWindowResize( "BASE_DEMO_WINDOW",  45,  24); 
  end TMain;