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...")
 
Line 5: Line 5:
 
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.
+
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 =

Revision as of 18:05, 2 January 2015

<< Back to 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


You are not allowed to post comments.