Share via


DictTable.Isview Method

Definition

Indicates whether the table is a view.

public:
 virtual bool Isview();
public virtual bool Isview ();
abstract member Isview : unit -> bool
override this.Isview : unit -> bool
Public Overridable Function Isview () As Boolean

Returns

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

Remarks

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

Applies to