aspose.pdf
Class EndNote

java.lang.Object
  extended by aspose.pdf.FootNote
      extended by aspose.pdf.EndNote

public class EndNote
extends FootNote

Represents the EndNote of Segment.

Typical usages are the following:

[Java] Pdf pdf1 = new Pdf(); Section sec1 = pdf1.getSections().add(); Segment seg1 = new Segment("dog"); EndNote endnote1 = new EndNote("dog is an animal"); seg1.setEndNote(endnote1); Text text1 = new Text(); text1.getSegments().add(seg1); sec1.getParagraphs().add(text1); pdf1.save(...); [XML] <?xml version="1.0" encoding="utf-8" ?> <Pdf xmlns="Aspose.Pdf"> <Section PageHeight="1684"> <Text MarginTop="0"> <Segment>dog</Segment> <Segment> <EndNote fontsize="7"> <Segment>dog is an animal</Segment> </EndNote> </Segment> </Text> </Section> </Pdf>


Constructor Summary
EndNote()
          Constructor - without content for EndNote object.
EndNote(java.lang.String content)
           Constructor - with content for EndNote object.
 
Method Summary
 EndNotePositioningType getEndNotePositioning()
          Gets an EndNotePositioningType value that indicates the position of the end note.
 NumberingContinuationType getNumberingContinuation()
          Gets a NumberingContinuationType object that indicates the continuation type of end note's number.
 void setEndNotePositioning(EndNotePositioningType value)
          Sets an EndNotePositioningType value that indicates the position of the end note.
 void setNumberingContinuation(NumberingContinuationType value)
          Sets a NumberingContinuationType value that indicates the continuation type of end note's number.
 
Methods inherited from class aspose.pdf.FootNote
getHasProcessed, getNumberingFormat, getParagraphs, getSegments, getTextInfo, isHaveNumberInfo, setHasProcessed, setHaveNumberInfo, setNumberingFormat, setParagraphs, setSegments, setTextInfo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EndNote

public EndNote()
Constructor - without content for EndNote object.


EndNote

public EndNote(java.lang.String content)
Constructor - with content for EndNote object.

Method Detail

getNumberingContinuation

public NumberingContinuationType getNumberingContinuation()
Gets a NumberingContinuationType object that indicates the continuation type of end note's number.

Overrides:
getNumberingContinuation in class FootNote
Returns:
A NumberingContinuationType object.

setNumberingContinuation

public void setNumberingContinuation(NumberingContinuationType value)
Sets a NumberingContinuationType value that indicates the continuation type of end note's number.

Overrides:
setNumberingContinuation in class FootNote
Parameters:
value - A NumberingContinuationType object.

getEndNotePositioning

public EndNotePositioningType getEndNotePositioning()
Gets an EndNotePositioningType value that indicates the position of the end note.

Returns:
An EndNotePositioningType ojbect.

setEndNotePositioning

public void setEndNotePositioning(EndNotePositioningType value)
Sets an EndNotePositioningType value that indicates the position of the end note.

Parameters:
value - An EndNotePositioningType object.