Package net.sf.jasperreports.export
Interface TextReportConfiguration
-
- All Superinterfaces:
CommonExportConfiguration
,ReportExportConfiguration
- All Known Implementing Classes:
SimpleTextReportConfiguration
public interface TextReportConfiguration extends ReportExportConfiguration
Interface containing settings used by the pure text exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRTextExporter
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_CHARACTER_HEIGHT
Property whose value is used as default state of thegetCharHeight()
export configuration setting.static String
PROPERTY_CHARACTER_WIDTH
Property whose value is used as default state of thegetCharWidth()
export configuration setting.static String
PROPERTY_PAGE_HEIGHT
Property whose value is used as default state of thegetPageHeightInChars()
export configuration setting.static String
PROPERTY_PAGE_WIDTH
Property whose value is used as default state of thegetPageWidthInChars()
export configuration setting.-
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS
-
Fields inherited from interface net.sf.jasperreports.export.ReportExportConfiguration
PROPERTY_IGNORE_PAGE_MARGINS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Float
getCharHeight()
Returns a float value representing the pixel/character vertical ratio.Float
getCharWidth()
Returns a float value representing the pixel/character horizontal ratio.Integer
getPageHeightInChars()
Returns an integer representing the page height in characters.Integer
getPageWidthInChars()
Returns an integer representing the page width in characters.-
Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
Methods inherited from interface net.sf.jasperreports.export.ReportExportConfiguration
getEndPageIndex, getExporterFilter, getHyperlinkProducerFactory, getOffsetX, getOffsetY, getPageIndex, getProgressMonitor, getStartPageIndex
-
-
-
-
Field Detail
-
PROPERTY_CHARACTER_WIDTH
static final String PROPERTY_CHARACTER_WIDTH
Property whose value is used as default state of thegetCharWidth()
export configuration setting. This property is not set by default.- See Also:
JRPropertiesUtil
, Constant Field Values
-
PROPERTY_CHARACTER_HEIGHT
static final String PROPERTY_CHARACTER_HEIGHT
Property whose value is used as default state of thegetCharHeight()
export configuration setting. This property is not set by default.- See Also:
JRPropertiesUtil
, Constant Field Values
-
PROPERTY_PAGE_WIDTH
static final String PROPERTY_PAGE_WIDTH
Property whose value is used as default state of thegetPageWidthInChars()
export configuration setting. This property is not set by default.- See Also:
JRPropertiesUtil
, Constant Field Values
-
PROPERTY_PAGE_HEIGHT
static final String PROPERTY_PAGE_HEIGHT
Property whose value is used as default state of thegetPageHeightInChars()
export configuration setting. This property is not set by default.- See Also:
JRPropertiesUtil
, Constant Field Values
-
-
Method Detail
-
getCharWidth
Float getCharWidth()
Returns a float value representing the pixel/character horizontal ratio.- See Also:
PROPERTY_CHARACTER_WIDTH
-
getCharHeight
Float getCharHeight()
Returns a float value representing the pixel/character vertical ratio.- See Also:
PROPERTY_CHARACTER_HEIGHT
-
getPageWidthInChars
Integer getPageWidthInChars()
Returns an integer representing the page width in characters.- See Also:
PROPERTY_PAGE_WIDTH
-
getPageHeightInChars
Integer getPageHeightInChars()
Returns an integer representing the page height in characters.- See Also:
PROPERTY_PAGE_HEIGHT
-
-