Gets the value for a point property of a specified control.
OraForms.bdh
OraFormsGetPropPoint(  in sName   :  string, 
                       in nPropId :  number, 
                       out nX     :  number, 
                       out nY     :  number ) :  boolean;
               | 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. | 
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;