Share via


DictTable.Tablegroup Method

Definition

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

Applies to