 | CLSTFindItems Method |
Searches a LST for items in a second LST, returns indices of those found.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void FindItems(
int type,
CLST lst2,
CVV vv
)
public void FindItems(
int type,
CLST lst2,
CVV vv
)
Public Sub FindItems (
type As Integer,
lst2 As CLST,
vv As CVV
)
Public Sub FindItems (
type As Integer,
lst2 As CLST,
vv As CVV
)
public:
void FindItems(
int type,
CLST^ lst2,
CVV^ vv
)
public:
void FindItems(
int type,
CLST^ lst2,
CVV^ vv
)
member FindItems :
type : int *
lst2 : CLST *
vv : CVV -> unit
member FindItems :
type : int *
lst2 : CLST *
vv : CVV -> unit
Parameters
- type
- Type: SystemInt32
<define>LST_ITEM</define> data to do the search on - lst2
- Type: GeoEngine.Core.GXNetXCLST
Items to search for - vv
- Type: GeoEngine.Core.GXNetXCVV
<define>GS_LONG</define> VV of returned indices into the first LST.
Remarks
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.
See Also