- java.lang.Object
-
- org.jfree.svg.ViewBox
-
public class ViewBox extends java.lang.Object
Represents a view box in SVG.- Since:
- 3.2
-
-
Constructor Summary
Constructors Constructor Description ViewBox(int minX, int minY, int width, int height)Creates a new instance with the specified dimensions.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringvalueStr()Returns a string containing the view box coordinates and dimensions.
-
-
-
Constructor Detail
-
ViewBox
public ViewBox(int minX, int minY, int width, int height)
Creates a new instance with the specified dimensions.- Parameters:
minX- the x coordinate.minY- the y coordinate.width- the width.height- the height.
-
-
Method Detail
-
valueStr
public java.lang.String valueStr()
Returns a string containing the view box coordinates and dimensions.- Returns:
- A string containing the view box coordinates and dimensions.
-
-