Package org.apache.fop.area
Interface Viewport
-
- All Known Implementing Classes:
BlockViewport,InlineViewport,RegionViewport
public interface ViewportA viewport-area that may clip its content.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.RectanglegetClipRectangle()Returns the clipping rectangle of this viewport area.booleanhasClip()Returns true if this area will clip overflowing content.
-
-
-
Method Detail
-
hasClip
boolean hasClip()
Returns true if this area will clip overflowing content.- Returns:
trueif the overflow trait has the value "hidden", "scroll" or "error-if-overflow"
-
getClipRectangle
java.awt.Rectangle getClipRectangle()
Returns the clipping rectangle of this viewport area.- Returns:
- the clipping rectangle expressed in the viewport's coordinate system, or null if clipping is disabled
-
-