Skip to main content

ISlideCollection Interface

Defines methods and properties for managing a collection of slide objects.

Declaration

public interface ISlideCollection extends List<Slide>

Implements

java.util.List<com.devexpress.docs.presentation.Slide>

Methods

move(int oldIndex, int newIndex) Method

Moves the element at the specified index to a new position.

Declaration

public abstract void move(int oldIndex, int newIndex)

Parameters

Name Type Description
oldIndex int

The current zero-based index of the element.

newIndex int

The new zero-based index for the element.

move(Slide slide, int newIndex) Method

Moves the specified element to a new position.

Declaration

public abstract void move(Slide slide, int newIndex)

Parameters

Name Type Description
slide Slide

The slide to move.

newIndex int

The new zero-based index for the element.