DictTable.Maxaccessmode 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.
Returns the value of the MaxAccessMode property for a table, as set in the AOT.
public:
virtual Microsoft::Dynamics::Ax::Xpp::AccessType Maxaccessmode();
public virtual Microsoft.Dynamics.Ax.Xpp.AccessType Maxaccessmode ();
abstract member Maxaccessmode : unit -> Microsoft.Dynamics.Ax.Xpp.AccessType
override this.Maxaccessmode : unit -> Microsoft.Dynamics.Ax.Xpp.AccessType
Public Overridable Function Maxaccessmode () As AccessType
Returns
A AccessType value that represents the maximum access mode for the table.
Remarks
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());
}