com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IControlPropertiesCollection

  • All Superinterfaces:
    com.aspose.ms.System.Collections.IEnumerable<com.aspose.ms.System.Collections.Generic.KeyValuePair<java.lang.String,java.lang.String>>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.ms.System.Collections.Generic.KeyValuePair<java.lang.String,java.lang.String>>, java.lang.Iterable<com.aspose.ms.System.Collections.Generic.KeyValuePair<java.lang.String,java.lang.String>>
    All Known Implementing Classes:
    ControlPropertiesCollection


    public interface IControlPropertiesCollection
    extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<com.aspose.ms.System.Collections.Generic.KeyValuePair<java.lang.String,java.lang.String>>

    A collection of ActiveX controls.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void add(java.lang.String name, java.lang.String value)
      Adds a property to the collection.
      void clear()
      Removes all properties.
      java.lang.String get_Item(java.lang.String name)
      Returns or sets property.
      int getCount()
      Returns a number of properties in the collection.
      com.aspose.ms.System.Collections.Generic.IGenericCollection<java.lang.String> getNamesOfProperties()
      Returns a number of properties in the collection.
      void remove(java.lang.String name)
      Removes a property with the specified name.
      void set_Item(java.lang.String name, java.lang.String value)
      Returns or sets property.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • getCount

        int getCount()

        Returns a number of properties in the collection. Read-only int.

      • add

        void add(java.lang.String name,
                 java.lang.String value)

        Adds a property to the collection.

        Parameters:
        name - The name of the property.
        value - The alue of the property.
      • remove

        void remove(java.lang.String name)

        Removes a property with the specified name.

        Parameters:
        name - The name of property to remove.
      • get_Item

        java.lang.String get_Item(java.lang.String name)

        Returns or sets property.

        Parameters:
        name - Name of property.
        Returns:
        Property.
      • set_Item

        void set_Item(java.lang.String name,
                      java.lang.String value)

        Returns or sets property.

        Parameters:
        name - Name of property.
      • getNamesOfProperties

        com.aspose.ms.System.Collections.Generic.IGenericCollection<java.lang.String> getNamesOfProperties()

        Returns a number of properties in the collection. Read-only IGenericCollection.

      • clear

        void clear()

        Removes all properties.