java.lang.ObjectCollectionBase
com.aspose.cells.PictureCollection
public class PictureCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | → inherited from com.aspose.cells.CollectionBase |
Picture | get(int index) | |
Gets the |
Method Summary | ||
---|---|---|
int | add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, java.io.InputStream stream) | |
Adds a picture to the collection. | ||
int | add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, java.lang.String fileName) | |
Adds a picture to the collection. | ||
int | add(int upperLeftRow, int upperLeftColumn, java.io.InputStream stream) | |
Adds a picture to the collection. | ||
int | add(int upperLeftRow, int upperLeftColumn, java.io.InputStream stream, int widthScale, int heightScale) | |
Adds a picture to the collection. | ||
int | add(int upperLeftRow, int upperLeftColumn, java.lang.String fileName) | |
Adds a picture to the collection. | ||
int | add(int upperLeftRow, int upperLeftColumn, java.lang.String fileName, int widthScale, int heightScale) | |
Adds a picture to the collection. | ||
int | add(java.lang.Object value) | → inherited from com.aspose.cells.CollectionBase |
Reserved for internal use. | ||
void | clear() | |
Clear all pictures. | ||
boolean | contains(java.lang.Object value) | → inherited from com.aspose.cells.CollectionBase |
Reserved for internal use. | ||
java.lang.Object | get(int index) | → inherited from com.aspose.cells.CollectionBase |
Reserved for internal use. | ||
int | indexOf(java.lang.Object value) | → inherited from com.aspose.cells.CollectionBase |
Reserved for internal use. | ||
java.util.Iterator | iterator() | → inherited from com.aspose.cells.CollectionBase |
void | removeAt(int index) | |
Remove shapes at the specific index |
Property Getters/Setters Detail |
---|
getCount | → inherited from com.aspose.cells.CollectionBase |
public int getCount() |
get | |
public Picture get(int index) |
index
- The zero based index of the element.Method Detail |
---|
add | |
public int add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, java.io.InputStream stream) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.lowerRightRow
- Lower right row indexlowerRightColumn
- Lower right column indexstream
- Stream object which contains the image data.add | |
public int add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, java.lang.String fileName) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.lowerRightRow
- Lower right row indexlowerRightColumn
- Lower right column indexfileName
- Image filename.add | |
public int add(int upperLeftRow, int upperLeftColumn, java.io.InputStream stream) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.stream
- Stream object which contains the image data.add | |
public int add(int upperLeftRow, int upperLeftColumn, java.lang.String fileName) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.fileName
- Image filename.add | |
public int add(int upperLeftRow, int upperLeftColumn, java.io.InputStream stream, int widthScale, int heightScale) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.stream
- Stream object which contains the image data.widthScale
- Scale of image width, a percentage.heightScale
- Scale of image height, a percentage.add | |
public int add(int upperLeftRow, int upperLeftColumn, java.lang.String fileName, int widthScale, int heightScale) throws java.lang.Exception |
upperLeftRow
- Upper left row index.upperLeftColumn
- Upper left column index.fileName
- Image filename.widthScale
- Scale of image width, a percentage.heightScale
- Scale of image height, a percentage.clear | |
public void clear() |
removeAt | |
public void removeAt(int index) |
iterator | → inherited from com.aspose.cells.CollectionBase |
public java.util.Iterator iterator() |
get | → inherited from com.aspose.cells.CollectionBase |
public java.lang.Object get(int index) |
contains | → inherited from com.aspose.cells.CollectionBase |
public boolean contains(java.lang.Object value) |
add | → inherited from com.aspose.cells.CollectionBase |
public int add(java.lang.Object value) |
indexOf | → inherited from com.aspose.cells.CollectionBase |
public int indexOf(java.lang.Object value) |