com.aspose.slides
Class ColumnsEx

java.lang.Object
  extended by com.aspose.slides.ColumnsEx
All Implemented Interfaces:
com.aspose.ms.System.Collections.IEnumerable<ColumnEx>, java.lang.Iterable<ColumnEx>
Direct Known Subclasses:
ColumnExCollection

Deprecated.

@Deprecated
public class ColumnsEx
extends java.lang.Object
implements com.aspose.ms.System.Collections.IEnumerable<ColumnEx>

Represents collection of columns in a table.


Method Summary
 int addClone(ColumnEx template, boolean withAttachedColumns)
          Deprecated.  Creates a copy of the specified template row and inserts it at the bottom of a table.
 ColumnEx get_Item(int index)
          Deprecated.  Returns the column at the specified index.
 int getCount()
          Deprecated.  Returns the number of columns in a collection.
 void insertClone(int index, ColumnEx template, boolean withAttachedColumns)
          Deprecated.  Creates a copy of the specified template row and insert it at the specified position in a table.
 com.aspose.ms.System.Collections.IEnumerator<ColumnEx> iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 void removeAt(int firstColumnIndex, boolean withAttachedRows)
          Deprecated.  Removes a column at the specified position from a table.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get_Item

public ColumnEx get_Item(int index)
Deprecated. 

Returns the column at the specified index. Read-only ColumnEx.


getCount

public int getCount()
Deprecated. 

Returns the number of columns in a collection. Read-only int.


addClone

public int addClone(ColumnEx template,
                    boolean withAttachedColumns)
Deprecated. 

Creates a copy of the specified template row and inserts it at the bottom of a table.

Parameters:
template - Column which is used as a template.
withAttachedColumns - True to copy also all columns attached to the template row.
Returns:
Index of a new row.

insertClone

public void insertClone(int index,
                        ColumnEx template,
                        boolean withAttachedColumns)
Deprecated. 

Creates a copy of the specified template row and insert it at the specified position in a table.

Parameters:
index - Index of a new row.
template - Column which is used as a template.
withAttachedColumns - True to copy also all columns attached to the template row.

removeAt

public void removeAt(int firstColumnIndex,
                     boolean withAttachedRows)
Deprecated. 

Removes a column at the specified position from a table.

Parameters:
firstColumnIndex - Index of a column to delete.
withAttachedRows - True to delete also all attached columns.

iterator

public com.aspose.ms.System.Collections.IEnumerator<ColumnEx> iterator()
Deprecated. 

Returns an enumerator for the entire collection.

Specified by:
iterator in interface com.aspose.ms.System.Collections.IEnumerable<ColumnEx>
Specified by:
iterator in interface java.lang.Iterable<ColumnEx>
Returns:
An IEnumerator for the entire collection.