Returns the specified property's value for the given control.
OraForms.bdh
OraFormsGetPropByte( in sName : string, in nPropId : number ) : number;
The value of the property.
Parameter | Description |
---|---|
sName | The control's unique name. |
nPropId | The ID of the property. |
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 := OraFormsGetPropByte("1", ORA_PID_IMAGE_VALUE); end TMain;