LayoutSlideCollection

LayoutSlideCollection

Overview

LayoutSlideCollection is a class in Aspose.Slides FOSS for Java. Inherits from: ILayoutSlideCollection.

Represents a collection of layout slides.

This class provides 8 methods for working with LayoutSlideCollection objects in Java programs. Available methods include: LayoutSlideCollection, asICollection, asIEnumerable, get, getByType, iterator, size. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package.

Methods

SignatureDescription
LayoutSlideCollection()Creates an empty LayoutSlideCollection.
LayoutSlideCollection(layouts: List<ILayoutSlide>)Creates a LayoutSlideCollection with the given layouts.
get(index: int)ILayoutSlideRetrieves the layout slide at the specified zero‑based index
size()int
asICollection()List<ILayoutSlide>Returns the layouts as a List of ILayoutSlide
asIEnumerable()Iterable<ILayoutSlide>Returns the layouts as an Iterable of ILayoutSlide
iterator()Iterator<ILayoutSlide>Provides an Iterator to traverse the layout slides
getByType(type: SlideLayoutType)ILayoutSlide

See Also