public interface GeographicText
| Modifier and Type | Method and Description |
|---|---|
Color |
getBackgroundColor()
Indicates the background color used to draw the text.
|
Color |
getColor()
Indicates the color used to draw the text.
|
Font |
getFont()
Indicates the font used to draw the text.
|
Position |
getPosition()
Indicates the geographic position of the text.
|
double |
getPriority()
Indicates the text priority.
|
CharSequence |
getText()
Indicates the text contained in this object.
|
boolean |
isVisible()
Indicates whether or not the text is visible.
|
void |
setBackgroundColor(Color background)
Specifies the background color used to draw the text.
|
void |
setColor(Color color)
Specifies the color used to draw the text.
|
void |
setFont(Font font)
Specifies the font used to draw the text.
|
void |
setPosition(Position position)
Specifies the geographic position of the text.
|
void |
setPriority(double d)
Specifies the text priority.
|
void |
setText(CharSequence text)
Specifies the text.
|
void |
setVisible(boolean visible)
Specifies whether or not the text is visible.
|
Color getBackgroundColor()
Color getColor()
Font getFont()
Position getPosition()
double getPriority()
CharSequence getText()
boolean isVisible()
false.true if the text is visible, otherwise false.void setBackgroundColor(Color background)
background - New background color.void setColor(Color color)
color - New color.void setFont(Font font)
font - New font.void setPosition(Position position)
position - New text position.void setPriority(double d)
d - New priority.void setText(CharSequence text)
text - New text.void setVisible(boolean visible)
false.visible - true if the text should be visible. false if not.