FindStruct - Array
Member of: All Arrays
Locates a particular value in a struct inside an array and returns the index
SyntaxEdit
int Function FindStruct(StructVarName asVarName, ;/var type/; akElement, int aiStartIndex = 0) native
ParametersEdit
- asVarName: The name of the struct variable to compare with (cannot be a variable, must be a raw string)
- akElement: The element to locate
- aiStartIndex: Where to start the search
- Default: 0
Return ValueEdit
The index of the struct in the array with the matching value, or a negative value if it was not found.
ExamplesEdit
if (MyPointArray.FindStruct("X", 1) < 0)
Debug.Trace("Did not find a point with an X of 1 in the array")
endIf
int firstPosition = MyPointArray.FindStruct("Y", 10)
Debug.Trace("Found a point with an Y of 10 at position " + firstPosition)
int secondPosition = MyPointArray.FindStruct("Y", 10, firstPosition + 1)
Debug.Trace("Found a second point with an Y of 10 at position " + secondPosition)
;bad, cannot pass a variable to asVarName, won't compile!
String axis = "Y"
int firstPosition = MyPointArray.FindStruct(axis, 10)