Share via


DictTable.Issystemtable Method

Definition

Indicates whether the table is a system table.

public:
 virtual bool Issystemtable();
public virtual bool Issystemtable ();
abstract member Issystemtable : unit -> bool
override this.Issystemtable : unit -> bool
Public Overridable Function Issystemtable () As Boolean

Returns

true if the table is a system table; otherwise, false.

Remarks

The following example shows the retrieval of a value that indicates whether the table is a system table.

DictTable dt; 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print(strfmt("System table: %1", dt.isSystemTable())); 
}

Applies to