com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IBehaviorPropertyCollection

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void add(java.lang.String propertyValue)
      Adds a new property to the collection.
      boolean contains(java.lang.String propertyValue)
      Determines whether the System.Collections.Generic.ICollection`1 contains a specific value.
      int indexOf(java.lang.String propertyValue)
      Determines the index of a specific item by property value in the System.Collections.Generic.IList`1.
      void insert(int index, java.lang.String propertyValue)
      Inserts a new property (with the specified property value) to the collection at the specified index.
      boolean remove(java.lang.String propertyValue)
      Removes specified property from the collection.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericList

        get_Item, indexOfItem, insertItem, removeAt, set_Item
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericCollection

        addItem, clear, containsItem, copyToTArray, isReadOnly, removeItem, size
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • add

        void add(java.lang.String propertyValue)

        Adds a new property to the collection.

        Parameters:
        propertyValue - Value of the property to add.
      • indexOf

        int indexOf(java.lang.String propertyValue)

        Determines the index of a specific item by property value in the System.Collections.Generic.IList`1.

        Parameters:
        propertyValue - value of the property
        Returns:
        The index of the property with the specified value
      • insert

        void insert(int index,
                    java.lang.String propertyValue)

        Inserts a new property (with the specified property value) to the collection at the specified index.

        Parameters:
        index - Index where a new property should be inserted.
        propertyValue - Value of the property to add.
      • remove

        boolean remove(java.lang.String propertyValue)

        Removes specified property from the collection.

        Parameters:
        propertyValue - Value of the property to remove.
      • contains

        boolean contains(java.lang.String propertyValue)

        Determines whether the System.Collections.Generic.ICollection`1 contains a specific value.

        Parameters:
        propertyValue - Value of the property to locate in the System.Collections.Generic.ICollection`1.
        Returns:
        true if propertyValue is found in the System.Collections.Generic.ICollection`1; otherwise, false.