lookupPoint

lookupPoint — accesses a point from the point cache.

Synopsis

For C++:
DataHubPoint* lookupPoint(pointname); 
LPCTSTR pointname;
 
For Java, and C#:
DataHubPoint lookupPoint(pointname); 
String pointname;
 

Parameters

pointname

The name of the point.

Returns

The corresponding point object in the point cache.

Description

This method returns a pointer to a cached DataHubPoint object matching the specified name object. If no object matching the name is in the cache, then NULL[8] is returned.

See Also

initializePointCache



[8] null in Java and C#.