LayoutSlideCollection
LayoutSlideCollection class
Represents a base class for collection of a layout slides.
getByType
Name | Description |
---|---|
getByType (byte) | Returns the first layout slide of specified type. |
Parameters:
Name | Type | Description |
---|---|---|
type | byte | A type of layout slide to find. |
Returns: LayoutSlide
getSyncRoot
Name | Description |
---|---|
getSyncRoot () | Returns a synchronization root. Read-only Object. |
Returns: Object
get_Item
Name | Description |
---|---|
get_Item (int) | Returns the layout slide by index. Read-only LayoutSlide. |
Returns: LayoutSlide
isSynchronized
Name | Description |
---|---|
isSynchronized () | Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only boolean. |
Returns: boolean
iterator
Name | Description |
---|---|
iterator () | Returns an enumerator that iterates through the collection. |
Returns:
iteratorJava
Name | Description |
---|---|
iteratorJava () | Returns a java iterator for the entire collection. |
Returns:
remove
Name | Description |
---|---|
remove (LayoutSlide) | Removes a layout from the collection. |
Parameters:
Name | Type | Description |
---|---|---|
value | LayoutSlide | The layout slide to remove from the collection. 1) To avoid throwing of the PptxEditException check layout’s HasDependingSlides property before. 2) You can use also ILayoutSlide#remove method to simplify code. |
Returns: void
Exception
Error | Condition |
---|---|
PptxEditException | Thrown if layout is used in presentation (its HasDependingSlides property is true). |
removeUnused
Name | Description |
---|---|
removeUnused () | Removes unused layout slides (layout slides whose HasDependingSlides is false). |
Returns: void
size
Name | Description |
---|---|
size () | Returns the number of layout slides in a collection. Read-only int. |
Returns: int