UITestControl.WaitForControlPropertyEqual Method (String, Object)
Blocks the current thread until the specified property of this control is equal to the specified value, or until the default 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 _
) As Boolean
public bool WaitForControlPropertyEqual(
string propertyName,
Object propertyValue
)
public:
bool WaitForControlPropertyEqual(
String^ propertyName,
Object^ propertyValue
)
member WaitForControlPropertyEqual :
propertyName:string *
propertyValue:Object -> bool
public function WaitForControlPropertyEqual(
propertyName : String,
propertyValue : Object
) : boolean
Parameters
- propertyName
Type: System.String
The name of the property.
- propertyValue
Type: System.Object
The value to test.
Return Value
Type: System.Boolean
true if the specified property equals propertyValue before the time-out; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
WaitForControlPropertyEqual Overload