drawstringn : a
tie consisting of a
cord that goes through a
seam around an opening; "he
pulled the drawstring and closed the bag"
[syn: drawing string, string] Noun1. a
tie consisting of a
cord that goes through a
seam around an opening; "he
pulled the drawstring and closed the bag" (synonym)
drawing string,
string (hypernym)
tie (hyponym)
purse string (part-holonym)
drawstring bag
-
method in
class java.awt.Graphics2DÂ
public abstract void drawString (AttributedCharacterIterator  iterator, float x, float y)Renders
the text of
the specified iterator,
using the Graphics2D
context's current Paint.
the iterator must specify a
font for each character.
the baseline of
the first character is at
position (
x,Â
y) in
the user Space.
the rendering attributes applied include the Clip, Transform, Paint,
and composite attributes.
for characters in
script systems such as
hebrew and Arabic,
the glyphs can be
rendered from right to left, in
which case the coordinate supplied is
the location of
the leftmost character on
the baseline.
Parameters: iterator -
the iterator whose text is to be
rendered -
the coordinates where the iterator's
text is to be renderedx, y -
the coordinates where the iterator's
text is to be rendered
See Also:  setPaint(java.awt.Paint) , Graphics.setColor(java.awt.Color) , setTransform(java.awt.geom.AffineTransform) , setComposite(java.awt.Composite) , Graphics.setClip(int, int, int, int)
-
method in
class java.awt.GraphicsÂ
public abstract void drawString (AttributedCharacterIterator  iterator, int x, int y)Draws
the text given by
the specified iterator,
using this graphics context's current color.
the iterator has to
specify a
font for each character.
the baseline of
the first character is at
position (
x,Â
y) in
this graphics context's coordinate system.
Parameters: iterator -
the iterator whose text is to be
drawn -
the coordinate.x -
the x coordinate. -
the coordinate.y -
the y coordinate.
See Also:  drawBytes(byte[], int, int, int, int) , drawChars(char[], int, int, int, int)
-
method in
class java.awt.Graphics2DÂ
public abstract void drawString (AttributedCharacterIterator  iterator, int x, int y)Renders
the text of
the specified iterator,
using the Graphics2D
context's current Paint.
the iterator has to
specify a
font for each character.
the baseline of
the first character is at
position (
x,Â
y) in
the user Space.
the rendering attributes applied include the Clip, Transform, Paint,
and composite attributes.
for characters in
script systems such as
hebrew and Arabic,
the glyphs can be
rendered from right to left, in
which case the coordinate supplied is
the location of
the leftmost character on
the baseline.
Overrides: drawString in class GraphicsÂ
Parameters: iterator -
the iterator whose text is to be
rendered -
the coordinates where the iterator's
text is to be renderedx, y -
the coordinates where the iterator's
text is to be rendered
See Also:  setPaint(java.awt.Paint) , Graphics.setColor(java.awt.Color) , setTransform(java.awt.geom.AffineTransform) , setComposite(java.awt.Composite) , Graphics.setClip(int, int, int, int)
-
method in
class javax.swing.DebugGraphicsÂ
public void drawString (AttributedCharacterIterator  iterator, int x, int y)Overrides Graphics.drawString.
Overrides: drawString in class GraphicsÂ
Tags copied from class: Graphics Parameters: iterator -
the iterator whose text is to be
drawn -
the coordinate.x -
the x coordinate. -
the coordinate.y -
the y coordinate.
See Also:  Graphics.drawBytes(byte[], int, int, int, int) , Graphics.drawChars(char[], int, int, int, int)
-
static method in
class javax.swing.plaf.basic.BasicGraphicsUtilsÂ
public static void drawString (Graphics  g, String  text, int underlinedChar, int x, int y)Draw a
string with the graphics g at
location (x,y)
just like g.drawString() would.
the first occurence of underlineChar in
text will be underlined.
the matching is
not case sensitive.
-
method in
class java.awt.Graphics2DÂ
public abstract void drawString (String  s, float x, float y)Renders
the text specified by
the specified String,
using the current font and paint attributes in
the Graphics2D context.
the baseline of
the first character is at
position (
x,Â
y) in
the user Space.
the rendering attributes applied include the Clip, Transform, Paint,
font and composite attributes.
for characters in
script systems such as
hebrew and Arabic,
the glyphs can be
rendered from right to left, in
which case the coordinate supplied is
the location of
the leftmost character on
the baseline.
Parameters: s -
the string to be
rendered -
the coordinates where the should be renderedx, y -
the coordinates where the string should be rendered
See Also:  setPaint(java.awt.Paint) , Graphics.setColor(java.awt.Color) , Graphics.setFont(java.awt.Font) , setTransform(java.awt.geom.AffineTransform) , setComposite(java.awt.Composite) , Graphics.setClip(int, int, int, int)
-
method in
class java.awt.GraphicsÂ
public abstract void drawString (String  str, int x, int y)Draws
the text given by
the specified string,
using this graphics context's current font and color.
the baseline of
the first character is at
position (
x,Â
y) in
this graphics context's coordinate system.
Parameters: str -
the string to be drawn. -
the coordinate.x -
the x coordinate. -
the coordinate.y -
the y coordinate.
See Also:  drawBytes(byte[], int, int, int, int) , drawChars(char[], int, int, int, int)
-
method in
class java.awt.Graphics2DÂ
public abstract void drawString (String  str, int x, int y)Renders
the text of
the specified String,
using the current font and paint attributes in
the Graphics2D context.
the baseline of
the first character is at
position (
x,Â
y) in
the user Space.
the rendering attributes applied include the Clip, Transform, Paint,
font and composite attributes.
for characters in
script systems such as
hebrew and Arabic,
the glyphs can be
rendered from right to left, in
which case the coordinate supplied is
the location of
the leftmost character on
the baseline.
Overrides: drawString in class GraphicsÂ
Parameters: str -
the string to be
rendered -
the coordinates where the should be renderedx, y -
the coordinates where the string should be rendered
Since: JDK1.0
See Also:  Graphics.drawBytes(byte[], int, int, int, int) , Graphics.drawChars(char[], int, int, int, int)
-
method in
class javax.swing.DebugGraphicsÂ
public void drawString (String  aString, int x, int y)Overrides Graphics.drawString.
Overrides: drawString in class GraphicsÂ
Tags copied from class: Graphics Parameters: str -
the string to be drawn. -
the coordinate.x -
the x coordinate. -
the coordinate.y -
the y coordinate.
See Also:  Graphics.drawBytes(byte[], int, int, int, int) , Graphics.drawChars(char[], int, int, int, int)