Difference between revisions of "CATable::ObtainTable"

(Created page with "<< Back to CATable = CATable::ObtainTable() = Refreshes the data in the CATable, in the event that the underlying result has changed. This function is s...")
 
(Marked this version for translation)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[CATable|<< Back to CATable]]
+
[[Category:ADE User Guide]]
 
+
[[ADE User Guide]] > [[ADE Server Class Reference]] > [[CATable]]
= [[CATable]]::ObtainTable() =
+
<languages />
 +
<translate>
 +
= [[CATable]]::ObtainTable() = <!--T:1-->
  
 +
<!--T:2-->
 
Refreshes the data in the [[CATable]], in the event that the underlying result has changed.
 
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 [[CATable::ResultTable|ResultTable]] or [[CATable::DefTable|DefTable]] anew. This function exists primary for internal usage.
+
<!--T:3-->
 +
This function is seldom used. It is more common (and recommended) to re-assign your variable to [[CAObject::ResultTable|ResultTable]] or [[CAObject::DefTable|DefTable]] anew. This function exists primary for internal usage.
  
= Return value =
+
= Return value = <!--T:4-->
  
 +
<!--T:5-->
 
Boolean (success or failure)
 
Boolean (success or failure)
  
= Example Usage =
+
= Example Usage = <!--T:6-->
  
 +
<!--T:7-->
 
<code>
 
<code>
 
:Dim outputTab as CATable = outputVar.ResultTable
 
:Dim outputTab as CATable = outputVar.ResultTable
Line 19: Line 25:
 
</code>
 
</code>
  
 +
<!--T:8-->
 
But it would be more common (and recommended) to use the following in place of the preceding line:
 
But it would be more common (and recommended) to use the following in place of the preceding line:
 
<code>
 
<code>
Line 24: Line 31:
 
</code>
 
</code>
  
= Error Codes =
+
= Error Codes = <!--T:9-->
  
  
= See Also =
+
= See Also = <!--T:10-->
  
 +
<!--T:11-->
 
* [[CATable::Update]]
 
* [[CATable::Update]]
 
* [[CAObject::ResultTable]]  
 
* [[CAObject::ResultTable]]  
 
* [[CAObject::DefTable]]
 
* [[CAObject::DefTable]]
 
* [[CAObject::Evaluate]]
 
* [[CAObject::Evaluate]]
 +
</translate>

Latest revision as of 01:11, 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.