public interface mxICanvas
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
drawCell(mxCellState state)
Draws the given cell.
|
java.lang.Object |
drawLabel(java.lang.String text,
mxCellState state,
boolean html)
Draws the given label.
|
double |
getScale()
Returns the scale.
|
mxPoint |
getTranslate()
Returns the current translation.
|
void |
setScale(double scale)
Sets the scale for the following drawing requests.
|
void |
setTranslate(double x,
double y)
Sets the translation for the following drawing requests.
|
void setTranslate(double x,
double y)
mxPoint getTranslate()
void setScale(double scale)
double getScale()
java.lang.Object drawCell(mxCellState state)
state - State of the cell to be painted.java.lang.Object drawLabel(java.lang.String text,
mxCellState state,
boolean html)
text - String that represents the label.state - State of the cell whose label is to be painted.html - Specifies if the label contains HTML markup.