English 中文(简体)
个人用品 SWT案文中含有植被
原标题:Obtain x,y coords of individual Chars in a SWT text widget
  • 时间:2009-10-05 06:30:41
  •  标签:

如果我写一下有关《维也纳条约法公约》的一段话,就是指某一字体/型号中的“这一案文”,那么我想个人指针。 是否有办法获得同样的东西?

问题回答
Text text = new Text(parent, SWT.NONE);
text.setText("This");

GC gc = new GC(text);
int currentPixelsX = text.getBounds().x;
int currentPixelsY = text.getBounds().y;
for (int i = 0; i < text.getText().length(); i++) {
    System.out.println("X co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsX);
    System.out.println("Y co-ordinate of " + text.getText().charAt(i) + ":" + currentPixelsY);

    currentPixelsX = currentPixelsX + gc.getCharWidth(text.getText().charAt(i));
}

这使同文箱的母体有关的六氯 co。





相关问题
热门标签