Share via


DictTable.Isbasedata Method

Definition

Indicates whether the table content is base data.

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

Returns

true if the TableContents property in the AOT indicates that the table content is base data; otherwise, false.

Remarks

The following example shows the retrieval of a value that indicates whether the table content is base data.

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

Applies to