Check if a tag value appears in an array of tag values.
Source position: utility.pas line 374
function TagInArray( |
t: LongWord; |
const TagArray: PULONG |
):LongBool; |
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. |