PDF3DViewArray
Inheritance: java.lang.Object, com.aspose.pdf.PDF3DViewArray
public class PDF3DViewArray extends Object
Class PDF3DViewArray.
Methods
| Method | Description |
|---|---|
| add | Adds the specified view. |
| get_Item | Gets or sets the {@code PDF3DView} to view array at the specified index. |
| getCount | Gets the views count. |
| removeAll | Removes all views. |
| removeAt | Removes view from views array at specified index. |
| set_Item | Gets or sets the {@code PDF3DView} to view array at the specified index. |
add
Adds the specified view.
get_Item
public PDF3DView get_Item(int index)
Gets or sets the {@code PDF3DView} to view array at the specified index.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | The index. |
Returns: PDF3DView. @throws IndexOutOfRangeException Invalid index: index should be in the range [1..n] where n equals to the views count.
getCount
public int getCount()
Gets the views count.
Returns: int value: The views count.
removeAll
public void removeAll()
Removes all views.
removeAt
public void removeAt(int index)
Removes view from views array at specified index.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | The view index. @throws IndexOutOfRangeException Invalid index: index should be in the range [1..n] where n equals to the views count. |
set_Item
Gets or sets the {@code PDF3DView} to view array at the specified index.