IS OBJECT()

From Lianjapedia
Revision as of 08:13, 4 February 2013 by Helen.george (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Function to check whether an expression is the name of an object

Syntax

IS_OBJECT(<exp>)

See Also

ACLASS(), ADDPROPERTY(), ARRAY(), COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DODEFAULT(), FOREACH, IS_ARRAY(), IS_FLOAT(), IS_INT(), IS_STRING(), ISALPHA(), ISDIGIT(), ISLOWER(), ISUPPER(), LOCAL, NEWOBJECT(), OBJECT(), PRIVATE, PUBLIC, RELEASE, REMOVEPROPERTY(), TYPE(), WITH

Description

The IS_OBJECT() function returns .T. (true) if the specified expression is the name of an object, otherwise .F. (false).

Example

open database southwind
select * from example into object adynamic
? is_object(adynamic)
.T.