DictTable.Isdefaultdata 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 contains default data.
public:
virtual bool Isdefaultdata();
public virtual bool Isdefaultdata ();
abstract member Isdefaultdata : unit -> bool
override this.Isdefaultdata : unit -> bool
Public Overridable Function Isdefaultdata () As Boolean
Returns
true if the table contains default data; otherwise, false.
Remarks
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());
}