DictTable.Tablegroup 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 table group for a table.
public:
virtual Microsoft::Dynamics::Ax::Xpp::TableGroup Tablegroup();
public virtual Microsoft.Dynamics.Ax.Xpp.TableGroup Tablegroup ();
abstract member Tablegroup : unit -> Microsoft.Dynamics.Ax.Xpp.TableGroup
override this.Tablegroup : unit -> Microsoft.Dynamics.Ax.Xpp.TableGroup
Public Overridable Function Tablegroup () As TableGroup
Returns
A TableGroup value that represents the table group of the table.
Remarks
The return value corresponds to the TableGroup property of the table in the AOT.
The following example shows the retrieval of the table group of the table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print strfmt("Table Group: %1", dt.tableGroup());
}