DictTable.Istmp 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 is a temporary table.
public:
virtual bool Istmp();
public virtual bool Istmp ();
abstract member Istmp : unit -> bool
override this.Istmp : unit -> bool
Public Overridable Function Istmp () As Boolean
Returns
true if the table is a temporary table; otherwise, false.
Remarks
The following example shows the retrieval of a value that indicates whether the table is a temporary table.
DictTable dt;
dt = new DictTable(tablenum(TmpWMSOrder));
if (dt)
{
print(strfmt("Temporary table: %1", dt.isTmp()));
}