Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the record cache level for the table.
Syntax
public RecordCacheLevel cacheLookup()
Run On
Called
Return Value
Type: RecordCacheLevel Enumeration
A RecordCacheLevel value that indicates the record cache level for the table.
Examples
The following example shows the retrieval of the cache level for a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print dt.cacheLookup();
}