com.aspose.slides
Class RowsEx

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

Deprecated.

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

Represents a collection of rows.


Method Summary
 int addClone(RowEx template, boolean withAttachedRows)
          Deprecated.  Creates a copy of the specified template row and inserts it at the bottom of a table.
 RowEx get_Item(int index)
          Deprecated.  Gets the element at the specified index.
 int getCount()
          Deprecated.  Gets the number of elements actually contained in the collection.
 void insertClone(int index, RowEx template, boolean withAttachedRows)
          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<RowEx> iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 void removeAt(int firstRowIndex, boolean withAttachedRows)
          Deprecated.  Removes a row 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 RowEx get_Item(int index)
Deprecated. 

Gets the element at the specified index.


addClone

public int addClone(RowEx template,
                    boolean withAttachedRows)
Deprecated. 

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

Parameters:
template - Row which is used as a template.
withAttachedRows - True to copy also all rows attached to the template row.
Returns:
Index of a new row.

insertClone

public void insertClone(int index,
                        RowEx template,
                        boolean withAttachedRows)
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 - Row which is used as a template.
withAttachedRows - True to copy also all rows attached to the template row.

removeAt

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

Removes a row at the specified position from a table.

Parameters:
firstRowIndex - Index of a row to delete.
withAttachedRows - True to delete also all attached rows.

getCount

public int getCount()
Deprecated. 

Gets the number of elements actually contained in the collection.


iterator

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

Returns an enumerator for the entire collection.

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