Package com.lowagie.text.rtf.document
Class RtfFootnoteSetting
- java.lang.Object
-
- com.lowagie.text.rtf.RtfElement
-
- com.lowagie.text.rtf.document.RtfFootnoteSetting
-
- All Implemented Interfaces:
RtfBasicElement
,RtfExtendedElement
,com.lowagie.text.RtfElementInterface
public class RtfFootnoteSetting extends RtfElement implements RtfExtendedElement
-
-
Field Summary
Fields Modifier and Type Field Description private static byte[]
FOOTNOTE_ANCHOR
private static byte[]
FOOTNOTE_ARABIC
Constant for the right marginprivate static byte[]
FOOTNOTE_BOTTOM
Constant for the page heightprivate static byte[]
FOOTNOTE_CONTINUOUS
Constant for the left marginprivate static byte[]
FOOTNOTE_SEP
private static byte[]
FOOTNOTE_START
Constant for the page widthprivate int
footnoteStart
The page width to use-
Fields inherited from class com.lowagie.text.rtf.RtfElement
document, inHeader, inTable
-
Fields inherited from interface com.lowagie.text.rtf.RtfBasicElement
CLOSE_GROUP, COMMA_DELIMITER, DELIMITER, OPEN_GROUP, TWIPS_FACTOR
-
-
Constructor Summary
Constructors Constructor Description RtfFootnoteSetting(RtfDocument doc)
Constructs a new RtfPageSetting object belonging to a RtfDocument.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeContent(java.io.OutputStream out)
unusedvoid
writeDefinition(java.io.OutputStream result)
Writes the page size / page margin definition-
Methods inherited from class com.lowagie.text.rtf.RtfElement
intToByteArray, isInTable, setInHeader, setInTable, setRtfDocument
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.lowagie.text.rtf.RtfBasicElement
setInHeader, setInTable, setRtfDocument
-
-
-
-
Field Detail
-
FOOTNOTE_BOTTOM
private static final byte[] FOOTNOTE_BOTTOM
Constant for the page height
-
FOOTNOTE_START
private static final byte[] FOOTNOTE_START
Constant for the page width
-
FOOTNOTE_CONTINUOUS
private static final byte[] FOOTNOTE_CONTINUOUS
Constant for the left margin
-
FOOTNOTE_ARABIC
private static final byte[] FOOTNOTE_ARABIC
Constant for the right margin
-
FOOTNOTE_SEP
private static final byte[] FOOTNOTE_SEP
-
FOOTNOTE_ANCHOR
private static final byte[] FOOTNOTE_ANCHOR
-
footnoteStart
private final int footnoteStart
The page width to use- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RtfFootnoteSetting
public RtfFootnoteSetting(RtfDocument doc)
Constructs a new RtfPageSetting object belonging to a RtfDocument.- Parameters:
doc
- The RtfDocument this RtfPageSetting belongs to
-
-
Method Detail
-
writeContent
public void writeContent(java.io.OutputStream out) throws java.io.IOException
unused- Specified by:
writeContent
in interfaceRtfBasicElement
- Specified by:
writeContent
in classRtfElement
- Parameters:
out
- TheOutputStream
to write the content to- Throws:
java.io.IOException
-
writeDefinition
public void writeDefinition(java.io.OutputStream result) throws java.io.IOException
Writes the page size / page margin definition- Specified by:
writeDefinition
in interfaceRtfExtendedElement
- Parameters:
result
- TheOutputStream
to write the element definition to- Throws:
java.io.IOException
-
-