IMathBlockCollection

All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericEnumerable

public interface IMathBlockCollection extends System.Collections.Generic.IGenericEnumerable<IMathBlock>

Collection of math blocks (IMathBlock)


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();

Methods

MethodDescription
add(IMathBlock item)Adds IMathBlock to the end of collection.
insert(int index, IMathBlock item)Inserts IMathBlock into the collection at the specified index.
remove(IMathBlock item)Removes the first occurrence of a specific object from the collection.
removeAt(int index)Removes an item at the specified index of the collection.
contains(IMathBlock item)Determines whether the collection contains a specific value.
indexOf(IMathBlock item)Determines the index of a specific IMathBlock in collection.
getCount()Gets the number of elements actually contained in the collection.
get_Item(int index)Gets the item at the specified index.
set_Item(int index, IMathBlock value)Gets the item at the specified index.
clear()Removes all elements from the collection.

add(IMathBlock item)

public abstract void add(IMathBlock item)

Adds IMathBlock to the end of collection.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 blockCollection.add(new MathBlock(new MathematicalText("x")));

Parameters:

ParameterTypeDescription
itemIMathBlockA mathematical block that will be added to the end of the collection

insert(int index, IMathBlock item)

public abstract void insert(int index, IMathBlock item)

Inserts IMathBlock into the collection at the specified index.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 IMathBlock block = new MathBlock(new MathematicalText("y"));
 blockCollection.insert(0, block);

Parameters:

ParameterTypeDescription
indexintThe zero-based index at which an item should be inserted.
itemIMathBlockThe IMathBlock to insert.

remove(IMathBlock item)

public abstract boolean remove(IMathBlock item)

Removes the first occurrence of a specific object from the collection.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 IMathBlock block = new MathBlock(new MathematicalText("y"));
 blockCollection.add(block);
 blockCollection.remove(block);

Parameters:

ParameterTypeDescription
itemIMathBlockThe object to remove from the collection.

Returns: boolean - true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the original collection.

removeAt(int index)

public abstract void removeAt(int index)

Removes an item at the specified index of the collection.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 IMathBlock block = new MathBlock(new MathematicalText("y"));
 blockCollection.add(block);
 blockCollection.removeAt(0);

Parameters:

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

contains(IMathBlock item)

public abstract boolean contains(IMathBlock item)

Determines whether the collection contains a specific value.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 IMathBlock block = new MathBlock(new MathematicalText("y"));
 blockCollection.addd(block);
 bool contains = blockCollection.contains(block);

Parameters:

ParameterTypeDescription
itemIMathBlockThe object to locate in the collection.

Returns: boolean - true if item is found in the collection; otherwise, false.

indexOf(IMathBlock item)

public abstract int indexOf(IMathBlock item)

Determines the index of a specific IMathBlock in collection.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 IMathBlock block = new MathBlock(new MathematicalText("y"));
 blockCollection.add(block);
 int index = blockCollection.indexOf(block);

Parameters:

ParameterTypeDescription
itemIMathBlockThe item to locate in the collection.

Returns: int - The index of item if found in the collection; otherwise, -1.

getCount()

public abstract int getCount()

Gets the number of elements actually contained in the collection. Read-only int.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 blockCollection.add(new MathBlock(new MathematicalText("block1")));
 blockCollection.add(new MathBlock(new MathematicalText("block2")));
 int blocksCount = blockCollection.getCount();

Returns: int

get_Item(int index)

public abstract IMathBlock get_Item(int index)

Gets the item at the specified index. Read-only IMathBlock.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 blockCollection.add(new MathBlock(new MathematicalText("block1")));
 blockCollection.add(new MathBlock(new MathematicalText("block2")));
 IMathBlock block = blockCollection.get_Item(1);

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the item to get.

Returns: IMathBlock - The block of a mathematical text.

set_Item(int index, IMathBlock value)

public abstract void set_Item(int index, IMathBlock value)

Gets the item at the specified index. Read-only IMathBlock.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 blockCollection.add(new MathBlock(new MathematicalText("block1")));
 blockCollection.add(new MathBlock(new MathematicalText("block2")));
 IMathBlock block = blockCollection.get_Item(1);

Parameters:

ParameterTypeDescription
indexintThe zero-based index of the item to set.
valueIMathBlockThe block of a mathematical text.

clear()

public abstract void clear()

Removes all elements from the collection.


Example:
 
 IMathBlockCollection blockCollection = new MathParagraph();
 blockCollection.add(new MathBlock(new MathematicalText("block1")));
 blockCollection.add(new MathBlock(new MathematicalText("block2")));
 blockCollection.clear();