Difference between revisions of "CATable::ObtainTable"

Line 1: Line 1:
[[CATable|<< Back to CATable]]
+
[[Category:ADE User Guide]]
 
+
[[ADE User Guide]] > [[ADE Server Class Reference]] > [[CATable]]
 +
<languages />
 +
<translate>
 
= [[CATable]]::ObtainTable() =
 
= [[CATable]]::ObtainTable() =
  
Line 33: Line 35:
 
* [[CAObject::DefTable]]
 
* [[CAObject::DefTable]]
 
* [[CAObject::Evaluate]]
 
* [[CAObject::Evaluate]]
 +
</translate>

Revision as of 01:09, 16 June 2015

ADE User Guide > ADE Server Class Reference > CATable

Other languages:
English • ‎中文

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


You are not allowed to post comments.