Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UITestControl::WaitForControlPropertyNotEqual Method (String^, Object^, Int32)

 

Blocks the current thread until the specified property of this control is not 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)

public:
bool WaitForControlPropertyNotEqual(
	String^ propertyName,
	Object^ propertyValue,
	int millisecondsTimeout
)

Parameters

propertyName
Type: System::String^

The name of the property.

propertyValue
Type: System::Object^

The value to test.

millisecondsTimeout
Type: System::Int32

The number of milliseconds before time-out.

Return Value

Type: System::Boolean

true if the specified property does not equal propertyValue before the time-out; otherwise, false.

When the wait operation causes an implicit search for the control or, when the application is busy, the actual wait time could be more than the time-out specified.

Return to top
Show: