Uses of Class
aspose.pdf.GraphNote

Uses of GraphNote in aspose.pdf
 

Methods in aspose.pdf that return GraphNote
 GraphNote GraphNotes.getGraphNote(int index)
          Gets a GraphNote object from the collection according to GraphNote index.
 

Methods in aspose.pdf that return types with arguments of type GraphNote
 java.util.List<GraphNote> ClippingPath.getClippingText()
           
 

Methods in aspose.pdf with parameters of type GraphNote
 void GraphNotes.add(GraphNote graphNote)
          Adds a new GraphNote object into the collection.
 void GraphNotes.copyTo(GraphNote[] graphNoteArray, int index)
          Copies the elements to a GraphNote object array, starting at a specified array index.
 void GraphNotes.insert(GraphNote noteToInsertAfter, GraphNote newNote)
          Inserts a new GraphNote object into the collection after specified GraphNote object.
 void GraphNotes.insert(int index, GraphNote graphNote)
          Inserts a new GraphNote object into the collection at specified position.
 void GraphNotes.remove(GraphNote noteToRemove)
          Removes a GraphNote object from the collection.
 void GraphNotes.setGraphNote(GraphNote value, int index)
          Sets a GraphNote object to the collection according to its index.
 

Method parameters in aspose.pdf with type arguments of type GraphNote
 void ClippingPath.setClippingText(java.util.List<GraphNote> clippingText)