ILayoutSlide

All Implemented Interfaces: com.aspose.slides.IBaseSlide, com.aspose.slides.IOverrideThemeable

public interface ILayoutSlide extends IBaseSlide, IOverrideThemeable

Represents a layout slide.

Methods

MethodDescription
getHeaderFooterManager()Returns HeaderFooter manager of the layout slide.
getMasterSlide()Returns or sets the master slide for a layout.
setMasterSlide(IMasterSlide value)Returns or sets the master slide for a layout.
getLayoutType()Returns layout type of this layout slide.
hasDependingSlides()Returns true if there exists at least one slide that depends on this layout slide.
getDependingSlides()Returns an array with all slides, which depend on this layout slide.
remove()Removes layout from presentation.

getHeaderFooterManager()

public abstract ILayoutSlideHeaderFooterManager getHeaderFooterManager()

Returns HeaderFooter manager of the layout slide. Read-only ILayoutSlideHeaderFooterManager.

Returns: ILayoutSlideHeaderFooterManager

getMasterSlide()

public abstract IMasterSlide getMasterSlide()

Returns or sets the master slide for a layout. Read/write IMasterSlide.

Returns: IMasterSlide

setMasterSlide(IMasterSlide value)

public abstract void setMasterSlide(IMasterSlide value)

Returns or sets the master slide for a layout. Read/write IMasterSlide.

Parameters:

ParameterTypeDescription
valueIMasterSlide

getLayoutType()

public abstract byte getLayoutType()

Returns layout type of this layout slide. Read-only SlideLayoutType.

Returns: byte

hasDependingSlides()

public abstract boolean hasDependingSlides()

Returns true if there exists at least one slide that depends on this layout slide. Read-only boolean.

Returns: boolean

getDependingSlides()

public abstract ISlide[] getDependingSlides()

Returns an array with all slides, which depend on this layout slide.

Returns: com.aspose.slides.ISlide[] - Array with all slides, which depend on this layout slide

remove()

public abstract void remove()

Removes layout from presentation.