ObjGetΒΆ

ObjGet returns values from objects.

dat = ObjGet(handle, index)
dat = ObjGet(handle, index, dat1, ...)

Return Value

The type of the return value depends dat on the argument of ObjGet (see example).

Parameters

handle

This parameter is the handle of an object.

index

This parameter is an index number of a subfunction. For example, the index number 26 returns the axis labels if the handle is a diagram.

dat1

dat1 is the first of 0 or more parameters which are passed to the object.

Comment

The ObjGet function is normally not called directly (see example).

Example

def LayerGetAxisLabel(hlayer, ssXYZ)
{
     return ObjGet(hlayer, 26, ssXYZ);
}

id-1942139