UITestControl.WaitForControlPropertyEqual Method (String, Object, Int32)

Blocks the current thread until the specified property of this control is equal to the specified value, or until the specified time-out expires.

Namespace:  Microsoft.VisualStudio.TestTools.UITesting
Assembly:  Microsoft.VisualStudio.TestTools.UITesting (in Microsoft.VisualStudio.TestTools.UITesting.dll)

Syntax

'Declaration
Public Function WaitForControlPropertyEqual ( _
    propertyName As String, _
    propertyValue As Object, _
    millisecondsTimeout As Integer _
) As Boolean
public bool WaitForControlPropertyEqual(
    string propertyName,
    Object propertyValue,
    int millisecondsTimeout
)
public:
bool WaitForControlPropertyEqual(
    String^ propertyName, 
    Object^ propertyValue, 
    int millisecondsTimeout
)
member WaitForControlPropertyEqual : 
        propertyName:string * 
        propertyValue:Object * 
        millisecondsTimeout:int -> bool 
public function WaitForControlPropertyEqual(
    propertyName : String, 
    propertyValue : Object, 
    millisecondsTimeout : int
) : boolean

Parameters

  • millisecondsTimeout
    Type: System.Int32
    The number of milliseconds before time-out.

Return Value

Type: System.Boolean
true if the specified property equals propertyValue before the time-out; otherwise, false.

.NET Framework Security

See Also

Reference

UITestControl Class

WaitForControlPropertyEqual Overload

Microsoft.VisualStudio.TestTools.UITesting Namespace