DictTable.isDefaultData Method

Indicates whether the table contains default data.

Syntax

public boolean isDefaultData()

Run On

Called

Return Value

Type: boolean
true if the table contains default data; otherwise, false.

Examples

The following example shows the retrieval of a value that indicates whether the table contains default data.

DictTable dt; 
 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print strfmt("isDefaultData: %1", dt.isDefaultData()); 
}

See Also

DictTable Class

Best Practices for Table Properties

DictTable.isBaseData Method

DictTable.isMap Method

DictTable.isSql Method

DictTable.isSystemTable Method

DictTable.isTmp Method

DictTable.isView Method