| IDriverTryFindT Method (ISearchPattern, Int32, Int32, T) | 
 
            Searches for an object that matches the specified pattern.
            The search depth and timeout are specified as parameters.
            
 
    Namespace: 
   SmartBear.TestLeft
    Assembly:
   SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
 Syntax
Syntaxbool TryFind<T>(
	ISearchPattern pattern,
	int depth,
	int timeout,
	out T res
)
where T : class, IObjectTreeNode
Function TryFind(Of T As {Class, IObjectTreeNode}) ( 
	pattern As ISearchPattern,
	depth As Integer,
	timeout As Integer,
	<OutAttribute> ByRef res As T
) As Boolean
Dim instance As IDriver
Dim pattern As ISearchPattern
Dim depth As Integer
Dim timeout As Integer
Dim res As T
Dim returnValue As Boolean
returnValue = instance.TryFind(pattern, 
	depth, timeout, res)generic<typename T>
where T : ref class, IObjectTreeNode
bool TryFind(
	ISearchPattern^ pattern, 
	int depth, 
	int timeout, 
	[OutAttribute] T% res
)
Parameters
- pattern
- Type: SmartBear.TestLeftISearchPattern
 The search pattern.
- depth
- Type: SystemInt32
 The search depth.
- timeout
- Type: SystemInt32
 The timeout used to wait for the object.
- res
- Type: T
 The found object or null.
Type Parameters
- T
- The interface that will be implemented in the returned object.
Return Value
Type: 
BooleanTrue if the object was found. Otherwise, false.
 See Also
See Also