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 value of the MaxAccessMode property for a table, as set in the AOT.
Syntax
public AccessType maxAccessMode()
Run On
Called
Return Value
Type: AccessType Enumeration
A AccessType value that represents the maximum access mode for the table.
Examples
The following example shows the retrieval of the maximum access mode for a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print strfmt("Maximum Access Mode: %1",dt.maxAccessMode());
}