asposediagram.api

Class CharCollection

Char collection.

Property Getters/Setters Summary
methodgetCount()
Gets the number of elements actually contained in the collection.
methodget(index)
Gets the element at the specified index.
 
Method Summary
methodadd(item)
Add the Char object in the collection.
methodclear()
Removes all elements from collection.
methodgetChar(IX)
Gets the element at the specified IX.
methodisExist(index)
Is exist item in the collection.
methoditerator()
Supports a simple iteration over a nongeneric collection.
methodremove(item)
Remove the Char object from the collection.
 

    • Property Getters/Setters Detail

      • getCount : int 

        int getCount()
        
        Gets the number of elements actually contained in the collection.
      • get : Char 

        Char get(index)
        
        Gets the element at the specified index.
        Parameters:
        index -
        Returns:
    • Method Detail

      • add

        int add(item)
        Add the Char object in the collection.
        Parameters:
        item: Char -
        Returns:
      • remove

         remove(item)
        Remove the Char object from the collection.
        Parameters:
        item: Char -
      • getChar

        Char getChar(IX)
        Gets the element at the specified IX.
        Parameters:
        IX: int - intThe zero-based index of the element within its parent element.
        Returns:
        CharChar.
      • iterator

        Iterator iterator()
        Supports a simple iteration over a nongeneric collection.
        Returns:
      • isExist

        boolean isExist(index)
        Is exist item in the collection.
        Parameters:
        index: int - index of element.
        Returns:
      • clear

         clear()
        Removes all elements from collection.