Difference between revisions of "CATable::ObtainTable"

(Marked this version for translation)
 
Line 3: Line 3:
 
<languages />
 
<languages />
 
<translate>
 
<translate>
= [[CATable]]::ObtainTable() =
+
= [[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.
  
 +
<!--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.
 
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 21: 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 26: 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]]  

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.