Wait for an image to appear anywhere on the screen
Namespace: Facilita.Fc.CitrixAssembly: fcCitrix (in fcCitrix.dll) Version: 9.5.7.98
Syntax
Parameters
- image
- Type: System String
The image to be found
Return Value
The rectangle where the image was found. This value is also copied to LastFoundLocationExceptions
Exception | Condition |
---|---|
TimeoutException |
Remarks
Examples
// Wait for the NewItem.bmp image to appear in the given X,Y,width,height screen area. // DefaultSearchRadius, DefaultTimeout and DefaultPollFrequency apply to this call WaitForImage("NewItem", 120, 150, 10, 12); Rectangle NewItem = LastFoundLocation; // save the location of the image // Click 50 pixels to the right of the image Click(NewItem.Right + 50, NewItem.Top + 10);
See Also