Package org.w3c.dom.svg
Interface SVGRect
-
public interface SVGRect
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetHeight()floatgetWidth()floatgetX()floatgetY()voidsetHeight(float height)voidsetWidth(float width)voidsetX(float x)voidsetY(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
-
-