[This is preliminary documentation and is subject to change.]

Waits until one of requested strings does not appear in journal.

Namespace:  Phoenix
Assembly:  Phoenix (in Phoenix.dll) Version: 0.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static bool WaitForText(
	bool ignoreCase,
	int timeout,
	params string[] text
)
Public Shared Function WaitForText ( _
	ignoreCase As Boolean, _
	timeout As Integer, _
	ParamArray text As String() _
) As Boolean
public:
static bool WaitForText(
	bool ignoreCase, 
	int timeout, 
	... array<String^>^ text
)

Parameters

ignoreCase
Boolean
If true character case is ignored.
timeout
Int32
Time in milliseconds before function times out. Use -1 to wait for infinite.
text
array< String >[]()[]
List of text that script is waiting for.

Return Value

Returns true if text appeared in journal. False when timeout.

See Also