Package org.sikuli.api.visual.element

Examples of org.sikuli.api.visual.element.LabelElement


  public StyleBuilder addLabel(ScreenRegion screenRegion, String labelText){
    return addLabel(screenRegion.getCenter(), labelText);
  }

  public StyleBuilder addLabel(ScreenLocation screenLocation, String labelText){
    LabelElement newElement = new LabelElement();
    newElement.text = labelText;
    newElement.x = screenLocation.getX();
    newElement.y = screenLocation.getY();
    return addElement(newElement);
  }
View Full Code Here

TOP

Related Classes of org.sikuli.api.visual.element.LabelElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.