Gets a number value from an OLE2 Automation Object.
FUNCTION OLE2.Get_Num_Property
(object obj_type,
property VARCHAR2,
Arglist List_Type := 0)
RETURN NUMBER;
Parameter | Description |
---|---|
object | An OLE2 Automation Object. |
property | The name of a property in an OLE2 Automation Object. |
Arglist | The name of an argument List assigned to the OLE2.Create_Arglist Function. |
/*
** Get the number value for the center of the map.
*/
x := OLE2.Get_Num_Property(Map,'GetMapCenterX');
y := OLE2.Get_Num_Property(Map,'GetMapCenterY');