Home / lang / isobject 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  mk  sq  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History
 
IsObject
Syntax
bRes = IsObject ( vRef ) AS Booelan
bRes = Object? ( vRef ) AS Boolean

Returns TRUE if the vRef is an object or a null reference.

Examples

DIM hRef AS NEW Collection
DIM saX AS String[]

PRINT IsObject(hRef),IsObject(TextBox1),IsObject(NULL),IsObjext(saX)

True True True True

DIM sX AS String

PRINT IsObject(Pi),IsObject(sX)

False False

See also

Datatype Functions  object