OraFormsGetPropInt Function

Action

Returns the specified property's value for the given control.

Include file

OraForms.bdh

Syntax

OraFormsGetPropInt(  in sName :  string, 
                     in nPropId :  number ) :  number;

Return value

  • The property's value
Parameter Description
sName The control's unique name.
nPropId The property to be returned.

Example

dcltrans 
  transaction TMain 
  var 
    nValue :  number; 
  begin 
    OraFormsConnect( "server module=javamail90.fmx usesdi=yes userid="); 
    OraFormsSetWindow( "BASE_DEMO_WINDOW"); 
    OraFormsWindowMove( "BASE_DEMO_WINDOW", 0,  -24); 
    nValue :=  OraFormsGetPropInt( "1", ORA_PID_FONT_SIZE); 
  end TMain;