Package net.sf.latexdraw.glib.models.interfaces.prop.ITextProp

Examples of net.sf.latexdraw.glib.models.interfaces.prop.ITextProp.TextPosition



  @Override
  protected void update(final IGroup shape) {
    if(shape.isTypeOf(ITextProp.class)) {
      final TextPosition tp = shape.getTextPosition();

      bButton.setSelected(tp==TextPosition.BOT);
      brButton.setSelected(tp==TextPosition.BOT_RIGHT);
      blButton.setSelected(tp==TextPosition.BOT_LEFT);
      tButton.setSelected(tp==TextPosition.TOP);
View Full Code Here

TOP

Related Classes of net.sf.latexdraw.glib.models.interfaces.prop.ITextProp.TextPosition

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.