DictTable.maxAccessMode Method

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()); 
}

See Also

DictTable Class

Table Properties

Best Practices for Table Properties