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.
Initializes a new instance of the Object class.
Syntax
public void new(TableId tableId)
Run On
Called
Parameters
- tableId
Type: TableId Extended Data Type
The ID of the table that is used to create the instance of the DictTable class.
Examples
The following example shows how to create an instance of the DictTable class.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (!dt)
{
// Take error action.
}