DictTable.isView Method

Indicates whether the table is a view.

Syntax

public boolean isView()

Run On

Called

Return Value

Type: boolean
true if the table is a view; otherwise, false.

Examples

The following example shows the retrieval of a value that indicates whether the table is a view.

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

See Also

DictTable Class

DictTable.isBaseData Method

DictTable.isDefaultData Method

DictTable.isMap Method

DictTable.isSql Method

DictTable.isSystemTable Method

DictTable.isTmp Method