public class PDF3DCrossSectionArray extends Object
Class PDF3DCrossSectionArray.
Constructor and Description |
---|
PDF3DCrossSectionArray(IDocument doc)
Initializes a new instance of the
PDF3DCrossSectionArray class. |
Modifier and Type | Method and Description |
---|---|
void |
add(PDF3DCrossSection crossSection)
Adds the specified cross section to views array .
|
PDF3DCrossSection |
get_Item(int index)
Gets or sets the
PDF3DCrossSection at the specified index. |
int |
getCount()
Gets the cross section count.
|
void |
removeAll()
Removes all cross section from array.
|
void |
removeAt(int index)
Removes cross section from array at specified index.
|
void |
set_Item(int index,
PDF3DCrossSection value)
Gets or sets the
PDF3DCrossSection at the specified index. |
public PDF3DCrossSectionArray(IDocument doc)
Initializes a new instance of the PDF3DCrossSectionArray
class.
doc
- The document.public int getCount()
Gets the cross section count.
public void add(PDF3DCrossSection crossSection)
Adds the specified cross section to views array .
crossSection
- The cross section.public void removeAt(int index)
Removes cross section from array at specified index.
index
- The index of removed cross section in array.com.aspose.ms.System.IndexOutOfRangeException
- Invalid index: index should be in the range [1..n] where n equals to the
cross sections count.public void removeAll()
Removes all cross section from array.
public PDF3DCrossSection get_Item(int index)
Gets or sets the PDF3DCrossSection
at the specified index.
index
- The index.com.aspose.ms.System.IndexOutOfRangeException
- Invalid index: index should be in the range [1..n] where n equals to the
cross sections count.public void set_Item(int index, PDF3DCrossSection value)
Gets or sets the PDF3DCrossSection
at the specified index.
index
- The index.value
- PDF3DCrossSection object.com.aspose.ms.System.IndexOutOfRangeException
- Invalid index: index should be in the range [1..n] where n equals to the
cross sections count.