The IsSystemObject function allows to know if the specified object is a system or user object.
Syntax
Integer Global.IsSystemObject(
Pointer obj)
Pointer obj)
Parameters
| obj | Reference of the object. | Required |
|---|
Return value
The IsSystemObject function returns true, or false if it's not a system object.
Example
Table table1 new
Table table2
table2 = new Table
IsSystemObject(table1) // yes
IsSystemObject(table2) // no
Table table2
table2 = new Table
IsSystemObject(table1) // yes
IsSystemObject(table2) // no