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.
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.
|
int getCount()
Returns a number of properties in the collection.
Read-only int
.
void add(java.lang.String name, java.lang.String value)
Adds a property to the collection.
name
- The name of the property.value
- The alue of the property.void remove(java.lang.String name)
Removes a property with the specified name.
name
- The name of property to remove.java.lang.String get_Item(java.lang.String name)
Returns or sets property.
name
- Name of property.void set_Item(java.lang.String name, java.lang.String value)
Returns or sets property.
name
- Name of property.com.aspose.ms.System.Collections.Generic.IGenericCollection<java.lang.String> getNamesOfProperties()
Returns a number of properties in the collection.
Read-only IGenericCollection
.
void clear()
Removes all properties.