GridPictureCollection
Inheritance: java.lang.Object
public class GridPictureCollection
Encapsulates a collection of GridPicture objects.
Methods
Method | Description |
---|---|
add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName) | Adds a picture to the collection. |
add(int upperLeftRow, int upperLeftColumn, String fileName) | Adds a picture to the collection. |
add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale) | Adds a picture to the collection. |
clear() | Clear all pictures. |
equals(Object arg0) | |
get(int index) | Gets the GridPicture element at the specified index. |
getClass() | |
getCount() | Gets the size of enumerator |
hashCode() | |
iterator() | Gets the rows enumerator |
notify() | |
notifyAll() | |
removeAt(int param_int) | Remove shapes at the specific index |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName)
public int add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, String fileName)
Adds a picture to the collection.
Parameters:
Parameter | Type | Description |
---|---|---|
upperLeftRow | int | Upper left row index. |
upperLeftColumn | int | Upper left column index. |
lowerRightRow | int | Lower right row index |
lowerRightColumn | int | Lower right column index |
fileName | java.lang.String | Image filename. |
Returns: int - GridPicture object index.
add(int upperLeftRow, int upperLeftColumn, String fileName)
public int add(int upperLeftRow, int upperLeftColumn, String fileName)
Adds a picture to the collection.
Parameters:
Parameter | Type | Description |
---|---|---|
upperLeftRow | int | Upper left row index. |
upperLeftColumn | int | Upper left column index. |
fileName | java.lang.String | Image filename. |
Returns: int - GridPicture object index.
add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale)
public int add(int upperLeftRow, int upperLeftColumn, String fileName, int widthScale, int heightScale)
Adds a picture to the collection.
Parameters:
Parameter | Type | Description |
---|---|---|
upperLeftRow | int | Upper left row index. |
upperLeftColumn | int | Upper left column index. |
fileName | java.lang.String | Image filename. |
widthScale | int | Scale of image width, a percentage. |
heightScale | int | Scale of image height, a percentage. |
Returns: int - GridPicture object index.
clear()
public void clear()
Clear all pictures.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
get(int index)
public GridPicture get(int index)
Gets the GridPicture element at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | The zero based index of the element. |
Returns: GridPicture - The element at the specified index.
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getCount()
public int getCount()
Gets the size of enumerator
Returns: int
hashCode()
public native int hashCode()
Returns: int
iterator()
public Iterator iterator()
Gets the rows enumerator
Returns: java.util.Iterator - The rows enumerator
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeAt(int param_int)
public void removeAt(int param_int)
Remove shapes at the specific index
Parameters:
Parameter | Type | Description |
---|---|---|
param_int | int |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |