asposediagram.api

Class DataColumnCollection

DataColumn collection.

Property Getters/Setters Summary
methodgetCount()
Gets the number of elements actually contained in the collection.
methodgetSortAsc()
method
setSortAsc(value)
           Whether to sort the SortColumn column in ascending (1) or descending (0) order. The value of the property is BOOL integer constant.
methodgetSortColumn()
method
           The column on which to sort the data.
methodget(index)
Gets the element at the specified index.
 
Method Summary
methodadd(dataColumn)
Add the dataColumn in the collection.
methodclear()
Removes all elements from collection.
methodisExist(index)
Is exist item in the collection.
methoditerator()
Supports a simple iteration over a nongeneric collection.
methodremove(dataColumn)
Remove the dataColumn from the collection.
 

    • Property Getters/Setters Detail

      • getSortColumn/setSortColumn : String 

        String getSortColumn() / setSortColumn(value)
        
        The column on which to sort the data.
      • getSortAsc/setSortAsc : int 

        int getSortAsc() / setSortAsc(value)
        
        Whether to sort the SortColumn column in ascending (1) or descending (0) order. The value of the property is BOOL integer constant.
      • getCount : int 

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

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

      • add

        int add(dataColumn)
        Add the dataColumn in the collection.
        Parameters:
        dataColumn: DataColumn -
        Returns:
      • remove

         remove(dataColumn)
        Remove the dataColumn from the collection.
        Parameters:
        dataColumn: DataColumn -
      • 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.