Uses of Class
aspose.pdf.Segment

Uses of Segment in aspose.pdf
 

Methods in aspose.pdf that return Segment
 Segment Segments.add()
          Initializes a new instance of the Segment class and add it to the Segments collection
 Segment Segments.add(java.lang.String segmentString)
          Initializes a new instance of the Segment class and add it to the Segments collection
 Segment FormField.getInlineSeg()
          Gets the inline Segment object.
 Segment Segments.getSegment(int index)
          Gets a Segment object from the collection according to Segment index.
 Segment Segments.getSegment(java.lang.String segmentID)
          Gets a Segment object from the collection according to Segment ID.
 

Methods in aspose.pdf with parameters of type Segment
 void Segments.add(Segment segment)
          Adds a new Segment object into the collection.
 void Segments.copyTo(Segment[] segmentArray, int index)
          Copies the elements to a Segment object array, starting at a specified array index.
 int Segments.indexOf(Segment segment)
          Gets the index of a specified Segment object in the collection.
 void Segments.insert(int index, Segment segment)
          Inserts a new Segment object into the collection after specified Segment object.
 void Segments.insert(Segment segmentToInsertAfter, Segment newSegment)
          Inserts a new Segment object into the collection after specified Segment object.
 void Segments.moveAfter(Segment segToMoveAfter, Segments newSegments)
          Move a segment after the other segment .
 void Segments.remove(Segment segmentToRemove)
          Removes a Segment object from the collection.
 void FormField.setInlineSeg(Segment value)
          Sets the inline Segment object.
 void Segments.setSegment(int index, Segment value)
          Sets a Segment object from the collection according to Segment index.
 void Segments.setSegment(java.lang.String segmentID, Segment value)
          Sets a Segment object from the collection according to Segment ID.