OraFormsGetPropPoint Function

Action

Gets the value for a point property of a specified control.

Include file

OraForms.bdh

Syntax

OraFormsGetPropPoint(  in sName   :  string, 
                       in nPropId :  number, 
                       out nX     :  number, 
                       out nY     :  number ) :  boolean;

Return value

  • true if successful
  • false otherwise
Parameter Description
sName The control's unique name.
nPropId The property ID.
nX Will be assigned the x value of the point property.
nY Will be assigned the y value of the point property.

Example

dcltrans 
  transaction TMain 
  var 
    nX :  number; 
    nY :  number; 
  begin 
    OraFormsConnect( "server module=javamail90.fmx usesdi=yes userid="); 
    OraFormsSetWindow( "BASE_DEMO_WINDOW"); 
    OraFormsWindowMove( "BASE_DEMO_WINDOW", 0,  -24); 
    OraFormsGetPropPoint( "MAIN", ORA_PID_SIZE, nX, nY); 
  end TMain;