Enum IFAlso
Used with uiimage.find and uiimage.wait. Its callback function (parameter also) can return one of these values.
public enum IFAlso
Namespace: Au.Types
Assembly: Au.dll
Fields
| Name | Description |
|---|---|
| FindOther | Find more instances of current image. If used list of images, also search for other images.
If not found, let the main function return |
| FindOtherOfList | If used list of images, search for other images. Don't search for more instances of current image.
If not found, let the main function return |
| FindOtherOfThis | Find more instances of current image. When used list of images, don't search for other images.
If not found, let the main function return |
| NotFound | Stop searching.
Let the main function return |
| OkFindMore | Find more instances of current image. If used list of images, also search for other images. Then let the main function return current result. |
| OkFindMoreOfList | If used list of images, search for other images. Don't search for more instances of current image. Then let the main function return current result. |
| OkFindMoreOfThis | Find more instances of current image. When used list of images, don't search for other images. Then let the main function return current result. |
| OkReturn | Stop searching. Let the main function return current result. |