IControlPropertiesCollection
All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericEnumerable
public interface IControlPropertiesCollection extends System.Collections.Generic.IGenericEnumerable<System.Collections.Generic.KeyValuePair<String,String>>
A collection of ActiveX controls.
Methods
| Method | Description |
|---|---|
| getCount() | Returns a number of properties in the collection. |
| add(String name, String value) | Adds a property to the collection. |
| remove(String name) | Removes a property with the specified name. |
| get_Item(String name) | Returns or sets property. |
| set_Item(String name, String value) | Returns or sets property. |
| getNamesOfProperties() | Returns a number of properties in the collection. |
| clear() | Removes all properties. |
getCount()
public abstract int getCount()
Returns a number of properties in the collection. Read-only int.
Returns: int
add(String name, String value)
public abstract void add(String name, String value)
Adds a property to the collection.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| name | java.lang.String | The name of the property. |
| value | java.lang.String | The alue of the property. |
remove(String name)
public abstract void remove(String name)
Removes a property with the specified name.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| name | java.lang.String | The name of property to remove. |
get_Item(String name)
public abstract String get_Item(String name)
Returns or sets property.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| name | java.lang.String | Name of property. |
Returns: java.lang.String - Property.
set_Item(String name, String value)
public abstract void set_Item(String name, String value)
Returns or sets property.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| name | java.lang.String | Name of property. |
| value | java.lang.String |
getNamesOfProperties()
public abstract System.Collections.Generic.IGenericCollection<String> getNamesOfProperties()
Returns a number of properties in the collection. Read-only IGenericCollection.
Returns: IGenericCollection
clear()
public abstract void clear()
Removes all properties.