DictTable.Issystemtable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()));
}