ITagCollection

All Implemented Interfaces: com.aspose.slides.IGenericCollection

public interface ITagCollection extends IGenericCollection<System.Collections.Generic.KeyValuePair<String,String>>

Represents the collection of tags (user defined pairs of strings)

Methods

MethodDescription
add(String name, String value)Adds a new tag to collection.
remove(String name)Removes the tag with a specified name from the collection.
indexOfName(String name)Returns the zero-based index of the specified key in the collection.
contains(String name)Determines whether the collection contains a specific name.
removeAt(int index)Removes the tag at the specified index.
clear()Removes all tags from the collection.
getValueByIndex(int index)Returns value of a tag at the specified index.
getNameByIndex(int index)Returns key of a tag at the specified index.
getNamesOfTags()Returns names of tags.
get_Item(String name)Returns or sets a key and a value pair of a tag.
set_Item(String name, String value)Returns or sets a key and a value pair of a tag.

add(String name, String value)

public abstract int add(String name, String value)

Adds a new tag to collection.

Parameters:

ParameterTypeDescription
namejava.lang.StringThe name of the tag.
valuejava.lang.StringThe value of the tag.

Returns: int - The index of the added tag.

remove(String name)

public abstract void remove(String name)

Removes the tag with a specified name from the collection.

Parameters:

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

indexOfName(String name)

public abstract int indexOfName(String name)

Returns the zero-based index of the specified key in the collection.

Parameters:

ParameterTypeDescription
namejava.lang.StringThe name to locate in the collection.

Returns: int - The zero-based index of key, if key is found in the collection; otherwise, -1.

contains(String name)

public abstract boolean contains(String name)

Determines whether the collection contains a specific name.

Parameters:

ParameterTypeDescription
namejava.lang.StringThe key to locate.

Returns: boolean - True if the collection contains an tag with the specified key; otherwise, false.

removeAt(int index)

public abstract void removeAt(int index)

Removes the tag at the specified index.

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the tag to remove.

clear()

public abstract void clear()

Removes all tags from the collection.

getValueByIndex(int index)

public abstract String getValueByIndex(int index)

Returns value of a tag at the specified index.

Parameters:

ParameterTypeDescription
indexintIndex of a tag to return.

Returns: java.lang.String - Value of a tag.

getNameByIndex(int index)

public abstract String getNameByIndex(int index)

Returns key of a tag at the specified index.

Parameters:

ParameterTypeDescription
indexintIndex of a tag to return.

Returns: java.lang.String - Key of a tag.

getNamesOfTags()

public abstract String[] getNamesOfTags()

Returns names of tags.

Returns: java.lang.String[] - Names of tags.

get_Item(String name)

public abstract String get_Item(String name)

Returns or sets a key and a value pair of a tag.

Parameters:

ParameterTypeDescription
namejava.lang.StringKey of a tag.

Returns: java.lang.String - Value of a tag.

set_Item(String name, String value)

public abstract void set_Item(String name, String value)

Returns or sets a key and a value pair of a tag.

Parameters:

ParameterTypeDescription
namejava.lang.StringKey of a tag.
valuejava.lang.String