com.aspose.pdf

Interfaces

Classes

Enums

Exceptions

com.aspose.pdf

Class TextSegmentCollection

    • Method Detail

      • size

        public int size()

        Gets the number of TextSegment object elements actually contained in the collection.

        Returns:
        int value
      • getSyncRoot

        public Object getSyncRoot()

        Gets an object that can be used to synchronize access to the collection.

        Returns:
        Object element
      • isSynchronized

        public boolean isSynchronized()

        Gets a value indicating whether access to the collection is synchronized (thread safe).

        Returns:
        boolean value
      • isReadOnly

        public boolean isReadOnly()

        Gets a value indicating whether collection is read-only

        Returns:
        boolean value
      • add

        public void add(TextSegment segment)

        Adds the text segment element at the specified index.

        Parameters:
        segment - Text segment object
      • delete

        public void delete(int index)

        Deletes the text segment element at the specified index.

        Parameters:
        index - int value
      • copyTo

        public void copyTo(TextSegment[] array,
                           int index)

        Copies the entire collection to a compatible one-dimensional Array, starting at the specified index of the target array

        Parameters:
        array - Array of objects which will be copied.
        index - Starting index from which copying will be started.
      • get_Item

        public TextSegment get_Item(int index)

        Gets the text segment element at the specified index.

        Parameters:
        index - Index within the collection.
        Returns:
        TextSegment object.
      • clear

        public void clear()

        Clears all items from the collection.

      • contains

        public boolean contains(TextSegment item)

        Determines whether the collection contains a specific value.

        Parameters:
        item - The object to locate in the collection
        Returns:
        true if item is found in the collection; otherwise, false.
      • remove

        public boolean remove(TextSegment item)

        Deletes specified item from collection.

        Parameters:
        item - The object to delete
        Returns:
        true if item was deleted from collection; otherwise, false.