| Author |
how to highlight a string in canvas
|
mani senthil
Greenhorn
Joined: Jan 18, 2007
Posts: 17
|
|
i drawn a string on canvas. i need to highlight a word in that string. is there any possibility?. Here is the same
protected void paint(Graphics g) {
g.setColor(255, 255, 255);
g.fillRect(0, 0, getWidth(), getHeight());
g.setColor(255, 0, 0);
g.drawString("Need to highlight any word in this string", 0, 0, Graphics.TOP | Graphics.LEFT);
}
|
 |
 |
|
|
subject: how to highlight a string in canvas
|
|
|