Package com.openhtmltopdf.css.style
Interface CssContext
-
- All Known Implementing Classes:
LayoutContext
,RenderingContext
public interface CssContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StyleReference
getCss()
int
getDotsPerPixel()
FSFont
getFont(FontSpecification font)
FontContext
getFontContext()
float
getFontSize2D(FontSpecification font)
FSFontMetrics
getFSFontMetrics(FSFont font)
float
getMmPerDot()
TextRenderer
getTextRenderer()
float
getXHeight(FontSpecification parentFont)
boolean
isInFloatBottom()
Returns true if we are laying out the footnote area rather than general content.
-
-
-
Method Detail
-
getMmPerDot
float getMmPerDot()
-
getDotsPerPixel
int getDotsPerPixel()
-
getFontSize2D
float getFontSize2D(FontSpecification font)
-
getXHeight
float getXHeight(FontSpecification parentFont)
-
getFont
FSFont getFont(FontSpecification font)
-
getCss
StyleReference getCss()
-
getFSFontMetrics
FSFontMetrics getFSFontMetrics(FSFont font)
-
getFontContext
FontContext getFontContext()
-
getTextRenderer
TextRenderer getTextRenderer()
-
isInFloatBottom
boolean isInFloatBottom()
Returns true if we are laying out the footnote area rather than general content.
-
-