All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sikuli.api.visual.DesktopCanvas Maven / Gradle / Ivy

package org.sikuli.api.visual;

import org.sikuli.api.DesktopScreenRegion;
/**
 * The DesktopCanvas class represents a canvas (frame) to be displayed on a screen region.
 *
 */
public class DesktopCanvas extends ScreenRegionCanvas {
	/**
	 * Constructs a new DesktopCanvas whose screen region
	 * is in full screen, and whose screen is the default screen (i.e., screen 0)
	 */
	public DesktopCanvas() {
		super(new DesktopScreenRegion());
	}
	
	public DesktopCanvas(int id) {
		super(new DesktopScreenRegion(id));
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy