ObjGet returns values from objects.
Return Value
The type of the return value depends dat on the argument of ObjGet (see example).
Parameters
This parameter is the handle of an object.
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 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);
}
See also
id-1942139