Syntax
object.FindItem (string, value, index, match)The FindItem method syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to a ListView control. |
| string | Required. A string expression indicating the ListItem object to be found. |
| value | Optional. An integer or constant specifying whether the string will be matched to the ListItem object's Text, Subitems, or Tag property, as described in Settings. |
| index | Optional. An integer or string that uniquely identifies a member of an object collection and specifies the location from which to begin the search. The integer is the value of the Index property; the string is the value of the Key property. If no index is specified, the default is 1. |
| match | Optional. An integer or constant specifying that a match will occur if the item's Text property is the same as the string, as described in Settings. |
'Create a ListItem variable. Dim itmX As ListItem 'Set the variable to the found item. Set itmX = ListView1.FindItem("Auto",,,lvwpartial)
