Click or drag to resize
CLSTFindItems Method
Searches a LST for items in a second LST, returns indices of those found.

Available since Oasis montaj version: 6.3.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
This is a much more efficient way of determining if items in one LST are found in a second, than by calling iFindItem_LST repeatedly in a loop. The returned INT VV contains the same number of items as the "search items" LST, and contains -1 for items where the value is not found, and the index of items that are found. Comparisons are case-tolerant.
Syntax
public void FindItems(
	int i1,
	CLST oLST2,
	CVV oVV3
)

Parameters

i1
Type: SystemInt32
See LST_ITEMConstant data to do the search on
oLST2
Type: GeoEngine.Core.GXNetCLST
Items to search for
oVV3
Type: GeoEngine.Core.GXNetCVV
GS_LONG VV of returned indices into the first LST.
See Also