DictTable.Isbasedata Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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());
}