A script-enabled browser is required for this page to function properly.

OLE2.Get_Num_Property

Description

Gets a number value from an OLE2 Automation Object.

Syntax


FUNCTION OLE2.Get_Num_Property
   (object   obj_type,
    property VARCHAR2,
    Arglist  List_Type := 0)
RETURN NUMBER;

Parameters

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.

Returns

A number value.

Example


 /* 
** Get the number value for the center of the map.
*/
x := OLE2.Get_Num_Property(Map,'GetMapCenterX');
y := OLE2.Get_Num_Property(Map,'GetMapCenterY');