SoMFInt64Find Method (Int64, 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: 2023.1.3.0 (2023.1.3)
Syntax public int Find(
long targetValue,
bool addIfNotFound
)
Public Function Find (
targetValue As Long,
addIfNotFound As Boolean
) As Integer
public:
int Find(
long long targetValue,
bool addIfNotFound
)
member Find :
targetValue : int64 *
addIfNotFound : bool -> int
Parameters
- targetValue
- Type: SystemInt64
- addIfNotFound
- Type: SystemBoolean
Return Value
Type:
Int32Remarks in 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