Check if a tag value appears in an array of tag values.
Source position: utility.pas line 172
function TagInArray( |
TagValue: LongWord; |
TagArray: PTag |
):LongBool; |
TagValue |
|
Tag value to search array for in array. |
TagArray |
|
A simple array of tag values terminated by TAG_DONE. |
True if tagValue was found in tagArray.
Determines whether the value tagValue exists in an array of Tags pointed to by tagArray. This array must be contiguous, and must be terminated by TAG_DONE. This is an array of Tags, not an array of TagItems.
|
Remove selected items from a tag list. |