Package org.w3c.dom.svg
Interface SVGRect
-
public interface SVGRect
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getHeight()
float
getWidth()
float
getX()
float
getY()
void
setHeight(float height)
void
setWidth(float width)
void
setX(float x)
void
setY(float y)
-
-
-
Method Detail
-
getX
float getX()
-
setX
void setX(float x) throws DOMException
- Throws:
DOMException
-
getY
float getY()
-
setY
void setY(float y) throws DOMException
- Throws:
DOMException
-
getWidth
float getWidth()
-
setWidth
void setWidth(float width) throws DOMException
- Throws:
DOMException
-
getHeight
float getHeight()
-
setHeight
void setHeight(float height) throws DOMException
- Throws:
DOMException
-
-