Description
True is returned if the given algorithm has a cell in the Memory database for the given index value. Otherwise, false is returned.
Applicable Events
AnyApp Pre-Application, AnyApp Post-Algorithm, AnyApp Post-Application
Syntax
object.HasMemoryCell (strIndexValue)
Parameters
Object is a reference to the Algorithm object. For more information, see Algorithm Object (page Algorithm Object).
HasMemoryCell is the command.
strIndexValue is the index value to be searched for.
Example
If MyAlg.HasMemoryCell(1) Then
MsgBox "Memory Cell Found"
End if