| SoMFVec4sFind Method (SbVec4s, Boolean) | 
Finds the given targetValue in the array and returns the index of that value. 
 
Namespace: OIV.Inventor.FieldsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2025.2.0.0 (10.18.0.0)
Syntaxpublic int Find(
	SbVec4s targetValue,
	bool addIfNotFound
)
Public Function Find ( 
	targetValue As SbVec4s,
	addIfNotFound As Boolean
) As Integer
public:
int Find(
	SbVec4s targetValue, 
	bool addIfNotFound
)
member Find : 
        targetValue : SbVec4s * 
        addIfNotFound : bool -> int 
Parameters
- targetValue
 - Type: OIV.InventorSbVec4s
 - addIfNotFound
 - Type: SystemBoolean
 
Return Value
Type: 
Int32
Remarksin the array. If the value is not found, -1 is returned. If addIfNotFound is set, then targetValue is added to the end of the array (but -1 is still returned). 
See Also