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

MethodDescription
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:

ParameterTypeDescription
namejava.lang.StringThe name of the property.
valuejava.lang.StringThe alue of the property.

remove(String name)

public abstract void remove(String name)

Removes a property with the specified name.

Parameters:

ParameterTypeDescription
namejava.lang.StringThe name of property to remove.

get_Item(String name)

public abstract String get_Item(String name)

Returns or sets property.

Parameters:

ParameterTypeDescription
namejava.lang.StringName 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:

ParameterTypeDescription
namejava.lang.StringName of property.
valuejava.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.