CATable::ObtainTable
ADE User Guide > ADE Server Class Reference > CATable
CATable::ObtainTable()
Refreshes the data in the CATable, in the event that the underlying result has changed.
This function is seldom used. It is more common (and recommended) to re-assign your variable to ResultTable or DefTable anew. This function exists primary for internal usage.
Return value
Boolean (success or failure)
Example Usage
- Dim outputTab as CATable = outputVar.ResultTable
- inputVar.SetAttribute("Definition",x)
- outputTab.ObtainTable()
But it would be more common (and recommended) to use the following in place of the preceding line:
- outputTab = outputVar.ResultTable
Error Codes
See Also
Comments
Enable comment auto-refresher