Returns the specified property's value for the given control.
OraForms.bdh
OraFormsGetPropInt( in sName : string, in nPropId : number ) : number;
Parameter | Description |
---|---|
sName | The control's unique name. |
nPropId | The property to be returned. |
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;