Difference between revisions of "IS OBJECT()"

From Lianjapedia
Jump to: navigation, search
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to check whether an expression is the name of an object
 
Function to check whether an expression is the name of an object
 
  
 
==Syntax==
 
==Syntax==
 
IS_OBJECT(<exp>)
 
IS_OBJECT(<exp>)
 
  
 
==See Also==
 
==See Also==
[[ACLASS()]], [[ADDPROPERTY()]], [[ARRAY()]], [[CLASS]], [[COMPOBJ()]], [[CREATEOBJECT()]], [[DEFINE CLASS]], [[DODEFAULT()]], [[FOREACH]],  
+
[[ACLASS()]], [[ADDPROPERTY()]], [[ARRAY()]], [[COMPOBJ()]], [[CREATEOBJECT()]], [[DEFINE CLASS]], [[DODEFAULT()]], [[FOREACH]],  
[[IS_ARRAY()]], [[IS_FLOAT()]], [[IS_INT()]], [[IS_STRING()]], [[ISALPHA()]], [[ISDIGIT()]], [[ISLOWER()]], [[ISUPPER()]], [[LOCAL]], [[METHOD]], [[NEWOBJECT()]], [[OBJECT()]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[REMOVEPROPERTY()]], [[TYPE()]], [[WITH]]
+
[[IS_ARRAY()]], [[IS_FLOAT()]], [[IS_INT()]], [[IS_STRING()]], [[ISALPHA()]], [[ISDIGIT()]], [[ISLOWER()]], [[ISUPPER()]], [[LOCAL]], [[NEWOBJECT()]], [[OBJECT()]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[REMOVEPROPERTY()]], [[TYPE()]], [[WITH]]
 
+
  
 
==Description==
 
==Description==
 
The IS_OBJECT() function returns .T. (true) if the specified expression is the name of an object, otherwise .F. (false).
 
The IS_OBJECT() function returns .T. (true) if the specified expression is the name of an object, otherwise .F. (false).
 
  
 
==Example==
 
==Example==
Line 24: Line 20:
 
</code>
 
</code>
  
 
==Products==
 
Lianja, Lianja Server
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Expressions and Type Conversion]]
+
[[Category:Formatting Functions]]
[[Category:Expressions and Type Conversion Functions]]
+
 
[[Category:Lianja VFP Extensions]]
 
[[Category:Lianja VFP Extensions]]
 
[[Category:VFP Function Extensions]]
 
[[Category:VFP Function Extensions]]

Latest revision as of 08:13, 4 February 2013

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.