PicklistGetFirstValueMatchStartsWith Method  | 
 
            Finds the first matching item in the collection. The search always starts at the beginning of the list. And performs a starts with search.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic bool GetFirstValueMatchStartsWith(
	string text,
	string discrim,
	out Object value
)
Public Function GetFirstValueMatchStartsWith ( 
	text As String,
	discrim As String,
	<OutAttribute> ByRef value As Object
) As Boolean
Parameters
- text
 - Type: SystemString
The text for which to search. - discrim
 - Type: SystemString
The discrim value to use. - value
 - Type: SystemObject
Reference to the matching object's value. 
Return Value
Type: 
BooleanTrue if the item matches, False otherwise.
See Also